Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从 barButton 显示了一个弹出框,我只希望当我点击弹出框中的按钮时弹出框被关闭。
我尝试了这种方式并在 viewController 中添加了一个公共方法来创建弹出框以将其关闭,但没有任何反应。
任何想法?先感谢您。
您可以使用dismissPopoverAnimatedPopoverController 的方法来关闭弹出框。
dismissPopoverAnimated
尝试这个,
- (IBAction) buttonClick:(id)sender { [popover dismissPopoverAnimated:YES]; }