好的,所以我正在 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;
}
什么会解决这个问题并允许应用程序继续运行?