gpt4 book ai didi

ios - appname.ViewsVC collectionView :cellForItemAtIndexPath:]: unrecognized selector sent to instance

转载 作者:可可西里 更新时间:2023-11-01 04:07:18 25 4
gpt4 key购买 nike

我正在构建一个 Collection View 并收到以下错误。

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[appname.ViewsVC collectionView:cellForItemAtIndexPath:]: unrecognized selector sent to instance

这是我自定义单元格的代码

// cell configuration
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell{

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ViewsCell", for: indexPath) as! ViewsCell

cell.fullnameLbl.text = self.viewsArray[(indexPath as NSIndexPath).row].capitalizeEachWord

// pic setup
avaArray[indexPath.row].getDataInBackground { (data:Data?, error:Error?) in
if error == nil {
cell.avaImg.image = UIImage(data: data!)
}
}

return cell
}

我在 Storyboard 中创建了 Collection View 和单元格,并为它们提供了正确的标识符。我还将 UIimageView 和标签连接到单元类。

任何可能出错的想法。

最佳答案

我意识到我在 View Controller 的顶部缺少 UICollectionViewDataSource 和 UICollectionViewDelegate

类 ViewsVC:UIViewController、UICollectionViewDataSource、UICollectionViewDelegate {

关于ios - appname.ViewsVC collectionView :cellForItemAtIndexPath:]: unrecognized selector sent to instance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41081852/

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