我正在使用UICollectionView
并且我的应用程序崩溃,因为我的物品数量为奇数,list
但我需要拖曳部分中的物品。
这是我在每个部分中的项目编号:
(NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section
{
return 2;
}
这是问题所在:在我的列表中,我有 3 个项目,当 objectAtIndex 为 3 时,应用程序崩溃
MSCoupon *coupon = [list objectAtIndex:indexPath.section * 2 + indexPath.row];
你有什么解决办法吗?