gpt4 book ai didi

swift - 为什么我的 UICollectionViewController 不显示任何内容?

转载 作者:行者123 更新时间:2023-11-28 15:25:23 24 4
gpt4 key购买 nike

我正在尝试让 UICollectionViewController 显示一个单元格网格(稍后我将在其中添加文本,如果可能的话可能作为 textView)。我有:

class GridViewController : UICollectionViewController{

//(NOW GONE) @IBOutlet weak var gridViewTable = UICollectionViewController()

let arr1 : [String] = []
let arr2 : [String] = []


override func viewDidLoad(){
super.viewDidLoad()
self.collectionView!.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "gridCell")


}

func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
return 4
}


func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 10
}




func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell{
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath as IndexPath)
cell.backgroundColor = UIColor.red
return cell
}
}

我使用界面生成器连接白色单元格将转到 gridViewTable 的位置。什么都没有出现,即使它运行和编译。如何让单元格显示?

最佳答案

请使用这些代码:

override func numberOfSections(in collectionView: UICollectionView) -> Int {
return 4
}

override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 10
}

override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath as IndexPath)
cell.backgroundColor = UIColor.red
return cell
}

关于swift - 为什么我的 UICollectionViewController 不显示任何内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45330859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com