HSC ASSESMENT - UICollectionView信号SIGABRT

时间:2013-02-13 08:13:27

标签: uicollectionview sigabrt

好的,所以我正在Xcode中构建一个基本的UICollectoion视图应用程序,关闭Ray Wenderlich网站上的教程,当我到达运行它的时候,它搜索照片,然后我得到一个错误这行代码......

    - (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {
        UICollectionViewCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"FlickrCell " forIndexPath:indexPath]; //< error on this line
        cell.backgroundColor = [UIColor whiteColor];
        return cell;

}

什么能解决这个问题并让应用继续运行?

1 个答案:

答案 0 :(得分:0)

注意标识符字符串中的尾随空格。

"FlickrCell "
 ..........^

它应该是“FlickerCell”。