如何迅速解除父母的弹出窗口
Posted
技术标签:
【中文标题】如何迅速解除父母的弹出窗口【英文标题】:How to dismiss a popover from parent in swift 【发布时间】:2015-06-08 11:16:32 【问题描述】:我是 ios 新手,速度很快。我正在尝试显示一个弹出窗口。我设法显示了一个弹出框,但问题是我需要从父级中将其关闭。
我可以使用此代码从 ViewController 本身关闭弹出框
self.dismissViewControllerAnimated(true, completion: nil)
但我需要从父视图控制器执行此操作。
到目前为止,我已经这样做了。点击按钮 performSegueWithIdentifier("bookingPopOverSegue", sender: self)
关于prepareForSegue,
if segue.identifier == "bookingPopOverSegue"
var bookingViewController = segue.destinationViewController as! BookingViewController
var passthroughViews: [AnyObject] = self.timeSlotButtons
passthroughViews.append(self.scrollView)
bookingViewController.popoverPresentationController?.passthroughViews = passthroughViews
知道如何做到这一点吗?任何帮助将不胜感激..
【问题讨论】:
我已经发布了我到目前为止所做的事情 参考这篇文章它会帮助你gracefullycoded.com/display-a-popover-in-swift 查看我的答案并尝试一下。它应该可以帮助你... 【参考方案1】:只需使用父级的presentedViewController 属性调用dismiss 方法,例如......
self.presentedViewController.dismissViewControllerAnimated(true, completion: nil)
对于 Swift 3.0
self.presentedViewController?.dismiss(animated: true, completion: nil)
【讨论】:
【参考方案2】:如果您的弹出框 controller 是公开的(例如作为您的子视图控制器的属性),那么只需使用它:
// 'self' is the parent
// 'popoverController' is the name of the property
self.childViewController.popoverController.dismissPopoverAnimated(<true or false>)
换句话说,问题不在于弹出框,而在于它对父级的可见性。
【讨论】:
ViewController 没有名为“childViewController”的成员以上是关于如何迅速解除父母的弹出窗口的主要内容,如果未能解决你的问题,请参考以下文章
如何在 android studio 的弹出窗口内添加滚动的 listView?