UICollectionViewLayoutAttributes
セルの 1 つに変換を適用するために使用しています。
適用したい変換は
CATransform3D transform = CATransform3DMakeTranslation(dx, dy, 0);
attributes.transform3D = CATransform3DScale(transform, rx, ry, 1);
dx
、dy
、rx
およびの数字でry
。
anchorPoint
問題は、この式がセルの中心ではないan に対して問題がないことです。デフォルトanchorPoint
は真ん中のようです。attributes
だから、私は私のものを指定したいと思いますanchorPoint
。
それを行う方法はありますか?
PS:属性以外にセルを変換するための制御はあまりありません。実際、この変換はメソッドで適用されます- (UICollectionViewLayoutAttributes*)initialLayoutAttributesForAppearingItemAtIndexPath:(NSIndexPath *)itemIndexPath