我已经在本教程中实现了UICollectionView:UICollectionView Tutorial
当我实施
时- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSInteger i = indexPath.item;
return YES;
}
或
- (BOOL)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSInteger i = indexPath.item;
return YES;
}
总是 i = 0
我已经尝试向Photo Object添加ID属性并分配它但没有索引我什么也做不了。这里做什么请帮助我卡住。
我正在尝试获取所选索引并在新视图控制器中查看所选照片但无法获取所选项目的索引。
答案 0 :(得分:1)
您从这些方法中获得的NSIndexPath
有row
和section
,您应该使用它来获取所需内容