S
Size: a a a
S
В
S
S
S
S
S
S
S
IG
H
H
IG
И
И
IG
var collectionView: UICollectionView {
let layout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 20, bottom: 20, right: 20)
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "MyCell")
collectionView.backgroundColor = UIColor.white
print("create")
collectionView.dataSource = self
collectionView.delegate = self
return collectionView
}
IG
IG
let collectionView: UICollectionView = {
let layout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 20, bottom: 20, right: 20)
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "MyCell")
collectionView.backgroundColor = UIColor.white
return collectionView
}()