Teerasej
Teerasej

Reputation: 1536

How can we navigate back to previous view programmatically in iPhone?

I am working on iPhone application which based on navigation controller. for example there are 2 views here.

A (UITableViewController) and B (ViewController)

the quest is here. when user select an item in View A. The application will force navigation controller to hide navigation bar before push View B to be showed, like the statement below:

self.navigationController.navigationBarHidden = YES;
[self.navigationController pushViewController:controllerB animated:TRUE];

That is, View B is there. but How can available user to navigate back to View A without navigation bar? In this case, we will use a button 'back' to let user tap on it to navigate back to View A. Could you help me?

Upvotes: 25

Views: 20299

Answers (3)

Justin Shaw
Justin Shaw

Reputation: 3

Swift 3:

 _ = navigationController?.popViewController(animated: true)

From this post: Xcode 8 / Swift 3: "Expression of type UIViewController? is unused" warning

Upvotes: 0

Abdul Saleem
Abdul Saleem

Reputation: 10622

Swift Version

self.navigationController?.popViewController(animated: true)

Upvotes: 0

Philippe Leybaert
Philippe Leybaert

Reputation: 171814

You can call the popViewControllerAnimated method:

[self.navigationController popViewControllerAnimated:YES];

Upvotes: 64

Related Questions