0

ページのアニメーションを追加したにもかかわらず (UIpageViewController を使用)、メイン ページのアニメーションも必要ですが、フォト アルバム ブック カバーのページめくりアニメーションが必要です。

私が欲しいのとまったく同じように、このリンクを参照してください。

4

2 に答える 2

3

これをチェックして :

http://code4app.net/ios/Flip-Transform-View/4f75aa156803faa60f000000

コード リファレンスについては、ビデオを参照してください。

これがあなたが探しているものだと思います。

于 2013-09-13T06:52:13.483 に答える
1

このコードを使用してください。長時間の作業の後、私はこのタスクを解決し、幸せを感じました:)

[UIView setAnimationDelegate:self];
[UIView commitAnimations];
CATransform3D initialTransform = ges.view.layer.transform;
initialTransform.m34 = 1.0 / -1100;
layer.transform = initialTransform;
layer.anchorPoint = CGPointMake(-0.0, 0.5);
NSLog(@"%f %f",layer.frame.origin.x,layer.frame.origin.y);
[UIView beginAnimations:@"Scale" context:nil];
[UIView setAnimationDuration:3];
[UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
CATransform3D rotationAndPerspectiveTransform = ges.view.layer.transform;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, M_PI , 0 , -ges.view.bounds.size.height/2, 0);
layer.transform = rotationAndPerspectiveTransform;
[UIView setAnimationDelegate:self];
[UIView commitAnimations];

[UIView setAnimationDelegate:self];
[UIView commitAnimations];
于 2013-09-13T11:50:32.180 に答える