我有一个一维图像数组,我将它们提供给 UICollectionView。集合视图只是由数组中的元素组成的一个部分。当我单击一个单元格-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath;
并被触发并从 indexPath 中打印出来时,我得到了第 0 行中元素 0 的值,例如 [0,0],但是该行中的下一个元素是 [0,5]。
如何将 indexPath 映射到我的数组,就像UITableView
[indexPath row] 直接匹配到相应索引的方式一样?