Stack Overflow上有很多问题和答案,但它们只适用于iOS 8及之前。
iOS 9弃用了很多东西,SO上的答案不再适用了。
说,我通过像这样执行一个segue来呈现一个popover
[self performSegueWithIdentifier:@"myPopover" sender:self];
此segue是在当前viewController和popover使用的viewController之间创建的。没有涉及按钮。 popover固定在视图上。
问题在于prepareForSegue:identifier
[segue destinationViewController]
是UIViewController
和
[[segue destinationViewController] popoverPresentationController]
是新的UIPopoverPresentationController
,此对象不再提供解雇api。
相反,我们应该使用
[self dismissViewControllerAnimated:YES completion:nil];
解雇popover,但这对我没有影响。
我的情况是这样的:我有一个带有文本字段的popover。如果用户隐藏键盘,我想解除popover。
所以我这样做了:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
然后
- (void)keyboardWillHide:(NSNotification *)notification {
[self dismissViewControllerAnimated:YES completion:nil];
}
但这根本没有效果。
我还试图在popover viewController中创建一个unwind segue,并从呈现视图控制器调用它,但这会导致应用程序崩溃。
答案 0 :(得分:3)
刚尝试过,这一切看起来都很完美。
dismissViewControllerAnimated:completion:
?presentingViewController
以进行检查。