Collection Views

Taking cues from UITableView, and adding so much more to the mix, UICollectionView allows you to present your data using a clear interface and unprecedented flexibility. Custom cells? Check! Custom layouts? Check! Custom animations? Check! Custom transitions? Check! In this introductory series to this iOS powerhouse you’ll start right at the beginning with the absolute basics. You’ll then move Swift-ly onto more advanced topics such as inserting cells, deleting cells, and moving cells around using drag-and-drop. If you’re not familiar with UITableView, or indeed it’s superclass UIScrollView, then I recommend checking out our series’ on those first. By Tim Mitra.

Leave a rating/review
Save for later
Comments
Share
01
Toggle description

Find out what's covered in our Collection Views video tutorial series and learn about the various types of collection views used throughout iOS apps.

Toggle description

In this video we look at the basics of Collection Views. We build a simple collection view displaying the index of each cell.

Custom Cells 10:26
Toggle description

In this video we look at creating a custom collection view cell and load an image in each cell.

Toggle description

In this video we break the collection view into multiple sections with each displaying a title.

Toggle description

In this video we look at adding new cells to the collection view.

Toggle description

In this video we look at subclassing the layout in the collection view, so that we can animate the addition of the cells.

Toggle description

In this video we add the ability to delete cells from the collection view.

Toggle description

In this video we look at moving cells using drag and drop. We will also add table view style headers that scroll with the cells.

Toggle description

In this video we move on to creating our own custom layout breaking free of UICollectionViewFlowLayout.