UICollectionView内置IB不显示单元格

时间:2015-11-07 09:38:06

标签: ios swift uicollectionview uicollectionviewcell

我创建了一个简单的应用并将UICollectionView拖到它上面。有一个单元格,我给它一个单元格ID并添加了一个标签。我还改变了collectionview和单元格的背景颜色。 当我在模拟器中运行应用程序时,collectionview在那里,但单元格不在。 我不知道我做错了什么,我开始真的很生气。

class ViewController: UIViewController, APExpandingTextViewDelegate,UICollectionViewDataSource,UICollectionViewDelegate {

...

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

    return 1;

}

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

    let cell = collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as! UICollectionViewCell

    return cell;

}

什么都没有出现。

IB的屏幕截图 IB Layout of UICollectionView

1 个答案:

答案 0 :(得分:2)

检查数据源和集合视图的委托是否在故事板中连接。 enter image description here