詳細ビューが表示され、文字列が空のときに、UIViewAnimationFlip
. アニメーションは機能していますが、私が開始したビュー コントローラーではなく、それ自体に反転し続けます。どんな助けでも素晴らしいでしょう!
- (void)viewDidAppear:(BOOL)animated {
if (masterView.parserURL == nil) {
LoginViewController *login = [[LoginViewController alloc] init];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.8];
[UIView setAnimationTransition:UIModalTransitionStyleFlipHorizontal
forView:self.view
cache:YES];
[self.navigationController presentViewController:login
animated:YES
completion:nil];
[UIView commitAnimations];
}
}