4

let's say I've 4 view controller

page 1 ----showdetail----> page 2 ----showdetail----> page 3 ----showdetail----> page 4

I want to go back to page 3 from page 4 with self.dismissViewControllerAnimated(true, completion: nil). It works fine in iOS 9 but it closes all view controller to page 1 when i try it in iOS 8 device

Aldo Lazuardi
  • 1,898
  • 2
  • 19
  • 34

1 Answers1

0

You probably want to use Present Modally segue instead of Show Detail. Here there is a good explanation for each kind of segues What's the difference between all the Selection Segues?

Community
  • 1
  • 1
Pablo A.
  • 2,042
  • 1
  • 17
  • 27