次のコードを使用して、(curl アニメーションを使用して) 前のページに戻ろうとしています。
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.tableView reloadData];
self.title = NSLocalizedString(@"Contacts",@"");
[self.navigationController popViewControllerAnimated:NO];
[UIView transitionWithView:self.navigationController.view duration:1.0 options:UIViewAnimationOptionTransitionCurlDown animations:^{ [self.navigationController popToRootViewControllerAnimated:NO];}completion:NULL];
//self.navigationItem.hidesBackButton = YES;
}
どういうわけか「戻る」ことができますが、カールアニメーションは現在のページ用であり(カールして現在のページを表示します)、前のページに戻ります。これを解決するにはどうすればよいですか?ありがとう。