ios – 使用Swift的UICollectionView错误

前端之家收集整理的这篇文章主要介绍了ios – 使用Swift的UICollectionView错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我收到此错误,尝试在 Swift中使用UICollectionView:
NSInternalInconsistencyException',reason: 'attempt to register a cell class which is not a subclass of UICollectionViewCell ((null))

但我想我正在注册这个单元格:

> ViewDidLoad:

override func viewDidLoad()
{
    super.viewDidLoad()
    self.collectionView.registerClass(NSClassFromString("CollectionCell"),forCellWithReuseIdentifier:"CELL")
}

> cellForItemAtIndexPath:

func collectionView(collectionView: UICollectionView,cellForItemAtIndexPath indexPath:NSIndexPath)->UICollectionViewCell
{
   var  cell = collectionView.dequeueReusableCellWithReuseIdentifier("CELL",forIndexPath: indexPath) as CollectionCell

    cell.titleLabel.text="cellText"
    return cell
}

和细胞类:

class CollectionCell: UICollectionViewCell
    {

        @IBOutlet var titleLabel : UILabel
        init(coder aDecoder: NSCoder!)
        {
            super.init(coder: aDecoder)

        } 
     }

任何帮助赞赏

解决方法

您需要将Swift样式的UICollectionViewCell子类传递给registerClass:
self.collectionView.registerClass(CollectionCell.self,forCellWithReuseIdentifier:"CELL")
原文链接:https://www.f2er.com/iOS/332908.html

猜你在找的iOS相关文章