
Hi,
How to go back to the previous view on the navigation controller view.
Write code for uinavigationcontroller go back.
Thanks

Hi,
Use the following code:
[self.navigationController popToRootViewControllerAnimated:YES];
Thanks

Hi,
With the help of following code you can display the root view of Navigation controller:
[self.navigationController popToRootViewControllerAnimated:YES];
But in some cases you have to go one view back in the your application. For this you can use following code to go back one view:
[[self navigationController] popViewControllerAnimated:YES];
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.