问题描述
在我的项目中,我在 UICollectionViewCell 中创建了 Cell
由于未捕获的异常而终止应用程序时出错
代码如下.
GalleryCell.swift
class GalleryCell: UICollectionViewCell { @IBOutlet var titleLabel : UILabel init(coder aDecoder: NSCoder!) { super.init(coder: aDecoder) } }
我在我的 ViewController 中使用了这个单元格:
代码如下:
NextViewController.swift
import UIKit class NextViewController: UIViewController { @IBOutlet var collectionView : UICollectionView var ListArray=NSMutableArray() override func viewDidLoad() { super.viewDidLoad() for i in 0..70 { ListArray .addObject("C: \(i)") } } func collectionView(collectionView: UICollectionView, numberOfItemsInSection section:Int)->Int { return ListArray.count } func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath:NSIndexPath)->UICollectionViewCell { var cell = collectionView.dequeueReusableCellWithReuseIdentifier("CELL", forIndexPath: indexPath) as GalleryCell cell.titleLabel.text="\(ListArray.objectAtIndex(indexPath.item))" return cell } func collectionView(collectionView : UICollectionView,layout collectionViewLayout:UICollectionViewLayout,sizeForItemAtIndexPath indexPath:NSIndexPath) -> CGSize { return CGSizeMake(66, 58) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. }
}
我的问题是我收到以下错误:
***** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'could not dequeue a view of kind: UICollectionElementKindCell with identifier CELL - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'*** First throw call stack:**
推荐答案
我在viewDidLoad()下的NextViewController.swift中添加了如下两行:
var nibName = UINib(nibName: "GalleryCell", bundle:nil) collectionView.registerNib(nibName, forCellWithReuseIdentifier: "CELL")
问题是我没有注册笔尖.现在我这样做了,它工作正常.
相关问答
swift - UICollectionView 如何闪烁?
UICollectionView 中的 Alamofire + Swift
swift中的UICollectionView粘性标题
用Swift创建一个分页的UICollectionView
UICollectionView在一个UICollectionViewCell内(Swift)
Swift 4 UICollectionView 检测滚动结束
在Swift中获取可见的IndexPath UICollectionView
Swift: 如何在UITableViewController(包含UICollectionView)中使用 "didSelectItemAtIndexPath"?
Swift -UicollectionView重复(重复)单元格
在Swift中设置一个UICollectionView的删除按钮