新しいUICollectionViewでは、UICollectionViewCellに影を追加する方法がありません。私はこれについてどうやって行くのですか?別のビューを追加しますか?UICollectionViewCell影色
[self.collectionView cellForItemAtIndexPath:[self.collectionView indexPathForItemAtPoint:[recognizer locationInView:[self view]]]].layer.shadowPath = [UIBezierPath bezierPathWithRect:rect].CGPath;
[self.collectionView cellForItemAtIndexPath:[self.collectionView indexPathForItemAtPoint:[recognizer locationInView:[self view]]]].layer.shadowColor = [UIColor yellowColor].CGColor;
[self.collectionView cellForItemAtIndexPath:[self.collectionView indexPathForItemAtPoint:[recognizer locationInView:[self view]]]].layer.shadowRadius = .5;
[self.collectionView cellForItemAtIndexPath:[self.collectionView indexPathForItemAtPoint:[recognizer locationInView:[self view]]]].layer.shadowOpacity = .1;
は、それは '呼び出すことは非常に非効率的ではないです[self.collectionViewのcellForItemAtIndexPath:[self.collectionView indexPathForItemAtPoint: [認識者locationInView:[自己表示]]]] '複数回ですか? –