Skip to content

Instantly share code, notes, and snippets.

@kemalekren
Created November 7, 2022 21:13
Show Gist options
  • Save kemalekren/4357fbeb91abc61ea511a2855b37fbe1 to your computer and use it in GitHub Desktop.
Save kemalekren/4357fbeb91abc61ea511a2855b37fbe1 to your computer and use it in GitHub Desktop.
import UIKit
final class HomeScene: UIViewController {
var collectionView: UICollectionView!
var dataSource: UICollectionViewDiffableDataSource<HomePresentation, HomeSection>?
var vm: HomeVMProtocol! {
didSet {
vm.delegate = self
}
}
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
vm.loadData()
setupViews()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment