2

UICollectionViewLayoutAttributesセルの 1 つに変換を適用するために使用しています。

適用したい変換は

    CATransform3D transform = CATransform3DMakeTranslation(dx, dy, 0);
    attributes.transform3D = CATransform3DScale(transform, rx, ry, 1);

dxdyrxおよびの数字でry

anchorPoint問題は、この式がセルの中心ではないan に対して問題がないことです。デフォルトanchorPointは真ん中のようです。attributesだから、私は私のものを指定したいと思いますanchorPoint

それを行う方法はありますか?


PS:属性以外にセルを変換するための制御はあまりありません。実際、この変換はメソッドで適用されます- (UICollectionViewLayoutAttributes*)initialLayoutAttributesForAppearingItemAtIndexPath:(NSIndexPath *)itemIndexPath

4

0 に答える 0