我刚刚开始实现多选 UICollectionView。以下是否会被视为“安全”代码(因为我认为它被称为 BackgroundView 而不是 AccessoryView 等)?我想节省一些精力,我打算跟踪索引路径中的选定项目,以便通过数组进一步使用。
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
//....
cell.selectedBackgroundView = someView_With_A_Checkmark_Image;
[cell bringSubviewToFront:cell.selectedBackgroundView];
//...
return cell;
}