// 获取 cell 在屏幕中的位置 , 根据 cell 的 x ,判断cell的位置,是否显示 line
UICollectionViewLayoutAttributes * att = [collectionView layoutAttributesForItemAtIndexPath:indexPath];
CGRect cellRect = att.frame;
CGRect cellFrame = [collectionView convertRect:cellRect toView:collectionView];
网友评论