UICollectionView不出现在模拟器中

时间:2014-08-29 17:48:42

标签: ios swift uicollectionview uicollectionviewcell xcode6-beta6

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

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

所以我试图用标签填充集合视图。在我的故事板中,我有一个视图控制器,里面只有一个集合视图,里面有一个标签。我知道我在故事板和我的viewcontroller代码中正确设置了标识符和标记。我知道我也正确设置了我的dataSource和委托出口。我一直在关注这个教程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
}



}

1 个答案:

答案 0 :(得分:0)

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