我想为何UICollectionViewCell
时调用动作制作动画。
我已经做过UICollectionViewCell
了Interface Builder
,UICollectionView
也。现在我想indexPath
在我的actionBtnAddToCard
方法中得到正确的。
这就是我现在尝试的方式(ProduktViewCell.m 中的方法):
- (IBAction)actionAddToCart:(id)sender {
XLog(@"");
// see this line
NSIndexPath *indexPath = ??** how can i access the correct indexPath**??;
SortimentViewController *svc = [[SortimentViewController alloc] initWithNibName:@"SortimentViewController_iPad" bundle:[NSBundle mainBundle]];
[svc.collectionViewProdukte cellForItemAtIndexPath:indexPath];
[svc collectionView:svc.collectionViewProdukte didSelectItemAtIndexPath:indexPath];
}
SortimentViewController 是继承 UICollectionView 的 viewController。
如何访问正确的 indexPath?
更新 1:编辑帖子以便更好地理解。