4

i have more viewcontroller that start from rootviewcontroller. So for example i start with controller A so pass to B and go to C the third.

Normally to come back we need to push back on left top. Instead i want to know if is possible instead use back button by code come previus view controller that in this case is B.

to go on the next i use this

ViewController *sc = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];

    [[self navigationController] pushViewController:sc animated:YES];
Falco
  • 149
  • 3
  • 13

2 Answers2

14

Simples

[[self navigationController] popViewControllerAnimated:YES];
EagerMike
  • 2,032
  • 1
  • 24
  • 40
4

See UINavigationController popViewControllerAnimated:(BOOL)animated

Peter Cetinski
  • 2,328
  • 14
  • 8