让我们说我是4视图控制器
第1页 ---- showdetail ----> 第2页 ---- showdetail ----> 第3页 ---- showdetail ----> 第4页
我想回到第4页的第3页self.dismissViewControllerAnimated(true, completion: nil)
。它在iOS 9中运行良好,但当我在iOS 8设备中尝试时,它会关闭所有视图控制器到第1页
答案 0 :(得分:0)
您可能希望使用Present Modally
segue而不是Show Detail
。这里有一个很好的解释每种segues What's the difference between all the Selection Segues?