我在视图控制器中有一个UICollectionView(let name a collection),我使用UICollectionReusableView在collection视图的顶部显示头
我在UICollectionReusableView中还有一个UICollectionView(let name bCollection)。我需要在这里显示最重要的用户列表。但是当我试图从故事板连接一个出口时,我得到了一个错误
我知道如何在集合视图中重新加载数据self.aCollection.reloadData()
我的问题是如何连接bCollection outlet以及如何重新加载bCollection以显示来自web服务的用户列表?
最佳答案
要获得bCollection
的出口,需要创建UICollectionReusableView
的子类。
例子:UIViewController
包含aCollection
:
class ViewController: UIViewController, UICollectionViewDataSource
{
@IBOutlet weak var aCollectionView: UICollectionView!
override func viewDidLoad()
{
super.viewDidLoad()
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
{
return 10
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
{
return collectionView.dequeueReusableCell(withReuseIdentifier: "aCell", for: indexPath)
}
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView
{
return (collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "reusableView", for: indexPath) as! ReusableView)
}
}
UICollectionReusableView
包含bCollection
:class ReusableView: UICollectionReusableView, UICollectionViewDataSource
{
@IBOutlet weak var bCollectionView: UICollectionView!
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
{
return 10
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
{
return collectionView.dequeueReusableCell(withReuseIdentifier: "bCell", for: indexPath)
}
}
界面截图
编辑:
要重新加载
bCollection
:您需要引用正在使用的
reusableView
。你使用它的方式不对。像这样使用:
var reusableView: ReusableView?
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView
{
self.reusableView = (collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "reusableView", for: indexPath) as! ReusableView) //Storing the reference to reusableView
return self.reusableView!
}
现在,要重新加载
ReusableView()
, self.reusableView?.bCollectionView.reloadData()