0

anybody know how to popToViewController ?

example: introvideo-> welcomeview & tutorialview-> mainviewcontroller-> scannerviewcontoller-> questionview ->(if answer correct -> correctView) else ->wrongView

how do i pop back to mainView controller ?

Desmond
  • 5,001
  • 14
  • 56
  • 115

2 Answers2

3

One way is to iterate through the viewControllers array of the navigation controller. You can identify the correct one by tag, class name, etc.

Alexander
  • 8,117
  • 1
  • 35
  • 46
2

based on what you have written It looks like MainViewController is the 4th ViewController on the navigation stack.

 [self.navigationController popToViewController:[arrayOfViewControllers objectAtIndex:3] animated:YES];

should do the trick.

aumanets
  • 3,703
  • 8
  • 39
  • 59
geminiCoder
  • 2,918
  • 2
  • 29
  • 50