Working With Collections
Table of Contents
Welcome to another installment of UIKit Learning! Today, we will dive into UICollectionView
and explore how to use it effectively in your iOS apps.
A UICollectionView
is a versatile and powerful component in UIKit that allows you to present a grid or list of items in a highly customizable layout. Whether you need a simple grid of images, a complex layout with multiple sections and headers, or dynamic, animated updates, UICollectionView
provides the flexibility to create engaging user interfaces.
We’ll start with a minimal example and gradually build up to more complex scenarios, using the latest best practices and features, including diffable data sources (a favorite of mine).
Setting Up a Minimal UICollectionView#
Creating the base view controller#
As usual, we’re going to approach our development programmatically, so you can refer to my post on setting up a programmatic UIKit project.
Let’s start by creating a new file called ViewController.swift
and add the following code.
This is the minimal view controller we are going to use to display the collection.
We are using this controller as the root ViewController for window in Scene Delegate.
Adding the collection to the view#
Now it’s time to add our UICollectionView
, inside the ViewController
add the following property.
Next, let’s configure the collection, by adding and calling a configure function.
This functions creates the actual collection and the layout for the collection.
Why we need a collectionViewLayout
#
When working with UICollectionView, you need to provide a layout object that determines how the items in the collection view are arranged.
UICollectionViewFlowLayout
is a concrete layout object that organizes items into a grid with optional header and footer views for each section. It’s the most commonly used layout class because it provides a lot of built-in functionality that suits many common use cases.
UICollectionView
does not come with a default layout. You must provide a layout object for it to work.UICollectionViewFlowLayout
is the default layout provided by UIKit that supports basic grid-like arrangements.
Adding the data source#
Our collection is already created with a basic layout but we need to have actual data to make it display any information, to solve this problem we could implement the UICollectionViewDataSource
but I prefer to use a diffable data source.
What’s a diffable data source#
A diffable data source is a modern way to manage the data in your collection views and table views. It makes it easier to update your UI when your data changes, ensuring smooth and efficient updates without having to manually calculate the differences between the old and new data.
In simple terms, you provide the entire set of new data to the data source using a snapshot, then the data source internally manages the update without any intervention from the user. A snapshot is like a picture of your data at a particular moment.
Creating the diffable data source#
Inside the class let’s create a new property called dataSource
.
The provided types are for the section identifier and the actual data our collection will display, in our case we are using Int
as the section identifier and String
as the data we want to display. We could use any custom types as long as they are valid for the role.
Configuring the data source#
The next step is crucial for our collection to work, we need to configure how the cells will be updated and we need to register the collection in our data source.
Let’s add the following function to our class
First, we are registering the cell we are going to use in our collection.
Next, creating the diffable data source and passing the reference to our collection. By doing this we are telling our data source the collection it will be managing.
The closure we are passing tells the data source how the update of each cell will be managed. Inside the closure we have access to the actual collection, the indexPath of the current element and the actual data element we want to display inside the cell.
By doing these simple steps we have our collection connected with its data source.
Creating the snapshot#
Finally we need a way to update the collection data, to do this let’s add a new function that will handle the snapshot.
This function creates a snapshot and applies the new data to the underlying system that will automatically updates the collection for us.
If your collection wants to show different data, you need to update the snapshot and the data source to be compatible. The data source and snapshot must be of the same type to work.
Creating a custom cell#
By default, collection cell doesn’t have text or other elements, so let’s create a custom cell we can reuse in our collection. You already register this cell for the collection and you’re already using it in the data source. It’s a simple cell that only shows a centered label.
In cells you need to add sub elements to the
contentView
not theview
.
Testing the collection#
Let’s test the collection. We need some data to show, here is some data you can add to your class.
Pass the data to the snapshot and run the code, you should see your data in the collection.
It should looks and behaves like the video above.
Conclusion#
Congratulations! You’ve successfully set up a UICollectionView
using a diffable data source and a custom cell, all programmatically. By following this tutorial, you now understand the basics of UICollectionView
and how to leverage diffable data sources to manage your data efficiently. This approach not only simplifies your code but also ensures smooth and animated updates to your collection view.
In this post, we’ve covered:
- Creating a minimal view controller and adding a
UICollectionView
to it. - Setting up a layout using
UICollectionViewFlowLayout
. - Understanding the importance of a layout object for
UICollectionView
. - Implementing a diffable data source to manage and update your collection view data.
- Creating and registering a custom cell to display text within your collection view.
With these foundational concepts in place, you’re well-equipped to build more complex and dynamic collection views in your iOS apps. Whether you’re displaying a grid of images, a list of text items, or something entirely custom, UICollectionView
and diffable data sources provide the flexibility and power you need.
Stay tuned for more in our UIKit Learning series, where we’ll dive deeper into advanced topics and best practices. Happy coding!
Apendix#
Here is the full code.