Я работаю с приложением iPhone.Я должен перейти к ProfileViewController (из HomeViewController) с помощью следующего кода:
ProfileViewController *ProfilePage = [[ProfileViewController alloc] initWithNibName:@"ProfileViewController" bundle:nil];
ProfilePage.RequestType = 2;
ProfilePage.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
UINavigationController *navigationControllerNew = [[UINavigationController alloc] initWithRootViewController:ProfilePage];
//Present navigationController as Model viw controller
[self.navigationController presentModalViewController:navigationControllerNew animated:YES];
//release it After presenting to it
[navigationControllerNew release];
[ProfilePage release];
Он работает нормально, но когда я возвращаюсь на ту же страницу после нажатия на кнопку «Последний просмотр» ProfileViewController, он возвращается сновано после возвращения.Моя кнопка popToViewController
на спине не работает на HomeScreenController.Может быть из-за нового контроллера навигации в стеке.
Где я делаю ошибку?Как это можно реализовать, чтобы снова работать с моей кнопкой «Назад»?