Setting up UITableView DIffableDataSource
Contacts DiffableDataSource
For the first lesson, I'll go over what we'll be learning in this entire series. Once you have an understanding of the overall concept, we'll dive directly into the lesson and start setting up our first UITableViewDIffableDatasource. Doing so is easy once you set up the necessary Section Types and Item Types as your generics.

Comments (8)
coreycorisma
3 years ago
Im Excited for this series !!, When should I expect The next episode??
Man Chung Wong
3 years ago
Man Chung Wong
3 years ago
Sanook
3 years ago
Adding Core Data would be fantastic, hope you add it.
Mohsen9april
3 years ago
Thanks For your help and time Please release more videos in free for some Countries can't porches
johnrm9
3 years ago
You might find this interesting: Using the protocol of CaseIterable in the enum SectionType as in enum SectionType: String, CaseIterable { case ceo = "CEO" case peasants = "Peasants" } allows the use of SectionType.allcases in: 1) func setupSouce private func setupSource() { var snapshot = source.snapshot() snapshot.appendSections(SectionType.allCases) // append all section types snapshot.appendItems([ .init(name: "Elon Musk"), .init(name: "Tim Cook"), .init(name: "Jeff Bezos") ], toSection: .ceo) snapshot.appendItems([ .init(name: "Bill Gates") ], toSection: .peasants) source.apply(snapshot) } 2) and when rendering table section headers: override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { let label = UILabel() label.text = SectionType.allCases[section].rawValue // Set header title from SectionType case return label }
Sachinsaif
2 years ago
Awesome Content Thanks Brian
BrianVoongLBTA
2 years ago
BrianVoongLBTA
2 years ago
BrianVoongLBTA
2 years ago
BrianVoongLBTA
2 years ago
Brian Voong
2 years ago
lbta
2 years ago
lbta
2 years ago
lbta
2 years ago
leocool99
2 years ago
Hello, can you make a video on how to connect the image that you uploaded from the sheet to move it into a list
HELP & SUPPORT