├── DiffableDataSource.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── DiffableDataSource ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Models │ └── Country.swift ├── SceneDelegate.swift ├── Screens │ ├── CollectionView │ │ ├── CollectionViewCell.swift │ │ └── CollectionViewController.swift │ └── TableView │ │ └── TableViewController.swift └── ViewController.swift ├── DiffableDataSourceTests ├── DiffableDataSourceTests.swift └── Info.plist └── LICENSE /DiffableDataSource.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DiffableDataSource.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DiffableDataSource.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DiffableDataSource/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/AppDelegate.swift -------------------------------------------------------------------------------- /DiffableDataSource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DiffableDataSource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DiffableDataSource/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DiffableDataSource/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DiffableDataSource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Info.plist -------------------------------------------------------------------------------- /DiffableDataSource/Models/Country.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Models/Country.swift -------------------------------------------------------------------------------- /DiffableDataSource/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/SceneDelegate.swift -------------------------------------------------------------------------------- /DiffableDataSource/Screens/CollectionView/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Screens/CollectionView/CollectionViewCell.swift -------------------------------------------------------------------------------- /DiffableDataSource/Screens/CollectionView/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Screens/CollectionView/CollectionViewController.swift -------------------------------------------------------------------------------- /DiffableDataSource/Screens/TableView/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/Screens/TableView/TableViewController.swift -------------------------------------------------------------------------------- /DiffableDataSource/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSource/ViewController.swift -------------------------------------------------------------------------------- /DiffableDataSourceTests/DiffableDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSourceTests/DiffableDataSourceTests.swift -------------------------------------------------------------------------------- /DiffableDataSourceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/DiffableDataSourceTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayesh15111988/DiffableDataSource/HEAD/LICENSE --------------------------------------------------------------------------------