mirror of
https://github.com/tappollo/IGListKit.git
synced 2026-06-14 17:09:44 +08:00
kill IGListCollectionView. GH issue #409 (redo of D4640425)
Summary: Take 2. Remove `IGListCollectionView` per #409. Use plain old `UICollectionView`. (This re-applies D4640425 and updates as needed.) Also: - run `pod update` everywhere - update changelog Reviewed By: paulvanderspek Differential Revision: D4812207 fbshipit-source-id: 1ddbae06cdeddb43d8af175d3e8a045a36ff150e
This commit is contained in:
committed by
Facebook Github Bot
parent
9735d611e8
commit
2284ce3897
@@ -20,9 +20,9 @@ final class NestedAdapterViewController: UIViewController, IGListAdapterDataSour
|
||||
lazy var adapter: IGListAdapter = {
|
||||
return IGListAdapter(updater: IGListAdapterUpdater(), viewController: self, workingRangeSize: 0)
|
||||
}()
|
||||
let collectionView = IGListCollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
|
||||
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
|
||||
|
||||
let data = [
|
||||
let data: [Any] = [
|
||||
"Ridiculus Elit Tellus Purus Aenean",
|
||||
"Condimentum Sollicitudin Adipiscing",
|
||||
14,
|
||||
@@ -31,7 +31,7 @@ final class NestedAdapterViewController: UIViewController, IGListAdapterDataSour
|
||||
6,
|
||||
"Tellus Nibh Ipsum Inceptos",
|
||||
2
|
||||
] as [Any]
|
||||
]
|
||||
|
||||
override func viewDidLoad() {
|
||||
super.viewDidLoad()
|
||||
|
||||
Reference in New Issue
Block a user