0

UIViewController をモーダルに追加していて、UIViewAnimationTransitionCurlDown トランジションを適用したいと考えています。以下のコードはうまく動作しません。移行しようとしているようなものですが、ビューがすぐに揺れて何も起こりません。何ができるか提案してください。UIViewController をモーダルに追加するのはこれが初めてです。

aboutViewController = [[AboutViewController alloc]
                       initWithNibName:@"AboutViewController" bundle:nil];
[self presentModalViewController: aboutViewController animated: YES];
UIViewAnimationTransition trans = UIViewAnimationTransitionCurlDown;
[UIView beginAnimations: nil context: nil];
[UIView setAnimationTransition: trans forView: [aboutViewController view] cache: YES];
[UIView commitAnimations];
4

0 に答える 0