1

我有一个 PopoverPresentationController,它从下面的按钮显示。

在此处输入图像描述

在此处输入图像描述

我想在单击外部弹出窗口时关闭此弹出窗口。单击弹出窗口内部时不应关闭它。下面是我的代码。

_popup = [self.storyboard instantiateViewControllerWithIdentifier:@"PopupViewController"];
_popup.modalPresentationStyle = UIModalPresentationPopover;
_popup.popoverPresentationController.sourceView = self.button;
_popup.modalInPopover = TRUE;

[self presentViewController:_popup animated:TRUE completion:nil];

我怎么做?

4

1 回答 1

2

删除这一行:

_popup.modalInPopover = TRUE;
于 2018-11-21T05:52:00.367 回答