1

好的,所以我正在 Xcode 中构建一个基本的 UIColletoion 视图应用程序,从 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;

}

什么会解决这个问题并允许应用程序继续运行?

4

1 回答 1

0

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

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

它应该是“FlickerCell”。

于 2013-03-17T10:15:18.897 回答