我创建了一个简单的应用并将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;
}
什么都没有出现。