- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 TreeView Controller 。当 secondViewController 出现时,我尝试在这个时候呈现 thirdViewController 我想关闭 secondViewController 因为每当我想尝试在 thirdViewController 中关闭时我都希望看到 firstViewController 看不到第二个。这是我试过的代码
self.presentViewController(thirtVC, animated: true) { () -> Void in
dispatch_after(0, dispatch_get_main_queue(), { () -> Void in
self.navigationController?.dismissViewControllerAnimated(false, completion: { () -> Void in
})
})
}
它不适用于这种情况。请问哪里有问题。
最佳答案
如果您正在呈现一个 View ,那么您必须关闭您的 viewController,然后像这样呈现另一个 viewController,
self.dismissViewControllerAnimated(true, completion: { () -> Void in
self.presentViewController(thirtVC, animated: true) { () -> Void in
}
}
关于ios - 当 thirdViewController 在 Swift 中呈现时关闭 secondViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32565208/
我有三个 View Controller :FirstViewController 有两个标签,SecondViewController 只有一个文本字段,ThirdViewController 也有
我已经启动了我的第一个应用程序,我希望该应用程序有一个用作待办事项列表的 View ,但是,我收到type 'ThirdViewController' does not conform to prot
在我的 app 中,我有三个 uiviewcontroller:firstviewcontroller、secondviewcontroller 和 thirdviewcontroller。 我使用导
我有 TreeView Controller 。当 secondViewController 出现时,我尝试在这个时候呈现 thirdViewController 我想关闭 secondViewCon
我是一名优秀的程序员,十分优秀!