UICollectionViewCell의 사각형을 얻는 방법은 무엇입니까? UITableView메서드 rectForRowAtIndexPath:가 있지만 UICollectionView에 존재하지 않습니다. 셀의 경계 사각형을 잡는 깔끔한 방법을 찾고 있는데, 아마도 UICollectionView. 이 작업을 수행하는 가장 좋은 방법은 다음과 같습니다. 목표 -C UICollectionViewLayoutAttributes *attributes = [self.collectionView layoutAttributesForItemAtIndexPath:indexPath]; 빠른 let attributes = collectionView.layoutAttributesForItem(at: indexPath) 그런 다음을 ..