ボタンをクリックすると、アニメーション付きの別のView Controllerに移動するiPhoneアプリを作成しています。以下は私が持っているものです。
- (IBAction)booking:(id)sender {
WebDetailsViewController *secondView = [self.storyboard instantiateViewControllerWithIdentifier:@"webDetailsEnglish"];
secondView.fileType = @"web";
secondView.myTitle = @"Booking";
secondView.fileName = @"http://almaktab.com/forms/flight.html";
[UIView beginAnimations: @"Showinfo"context: nil];
[UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:0.75];
[self.navigationController pushViewController: secondView animated:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.navigationController.view cache:NO];
[UIView commitAnimations];
}
の戻るボタンをクリックしたときに同じアニメーション効果を適用したいWebDetailsViewController
。
これを行う方法はありますか?