2

当我构建我的项目时,屏幕在模拟器中只显示为白色(其中集合视图为黑色),当然也没有我想要出现的单元格。

我正在使用 xcode6-beta6,这是用于 ios (ipad) 的。

所以我试图用标签填充集合视图。在我的故事板中,我有一个视图控制器,里面只有一个集合视图,里面有一个单元格,我在里面放了一个标签。我知道我在故事板和我的视图控制器代码中正确设置了标识符和标签。我知道我也正确设置了我的数据源和委托出口。我一直在关注本教程https://www.youtube.com/watch?v=jiiN9oFH3vE但是它在 xcode 5 和 Objective-c 中,所以我不知道 swift/xcode6 中是否有完全不同的东西我没有做。

这是我的代码

import UIKit

class FirstViewController: UIViewController,UICollectionViewDelegateFlowLayout, UICollectionViewDataSource {

    var testArray:[String]!

override func viewDidLoad() {
    super.viewDidLoad()
    testArray = ["hello","world","hola","mmg","me","la"]
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func numberOfSectionsInCollectionView(collectionView: UICollectionView!) -> Int{
    return 1
}


func collectionView(collectionView: UICollectionView!, numberOfItemsInSection section: Int) -> Int{
        return testArray.count
}
func collectionView(collectionView: UICollectionView!, cellForItemAtIndexPath indexPath: NSIndexPath!) -> UICollectionViewCell!{
    var cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as FirstCollectionViewCell

    var label = cell.viewWithTag(1) as UILabel
    label.text = testArray[indexPath.row]
    return cell
}



}
4

1 回答 1

0

您是否将UICollectionView委托和数据源设置为self任何地方?我在您的代码中没有看到它,这可能是问题所在。您的viewDidLoad方法中可能需要它。

于 2014-08-29T17:55:54.660 回答