如何使用IOS 8 XCode 6 beta从Popover中的按钮关闭UIPopover

如何使用IOS 8 XCode 6 beta从Popover中的按钮关闭UIPopover,第1张

概述我设法使用UIPopoverPresentationController显示popover,因为UOSopoverController在 IOS 8中已被弃用,但现在我想从popover中关闭按钮上的popover. 怎么可以被解雇? 使用UIViewController的presentsViewController属性来关闭. 例如:出席 vc.modalPresentationStyle = 我设法使用UIPopoverPresentationController显示popover,因为UOSopoverController在 IOS 8中已被弃用,但现在我想从popover中关闭按钮上的popover.

怎么可以被解雇?

解决方法 使用UIVIEwController的presentsVIEwController属性来关闭.
例如:出席

vc.modalPresentationStyle = UIModalPresentationPopover;  vc.preferredContentSize  = aPreffferedSize;  UIPopoverPresentationController *popcontroller = vc.popoverPresentationController;  popcontroller.barbuttonItem = [[UIbarbuttonItem alloc] initWithCustomVIEw:vIEw];  popcontroller.permittedArrowDirections = UIPopoverArrowDirectionAny;  popcontroller.delegate = self;  [self presentVIEwController:vc animated:YES completion:nil];

要以编程方式解雇,

[[vc presentingVIEwController] dismissVIEwControllerAnimated:YES completion:NulL];

希望这可以帮助.

总结

以上是内存溢出为你收集整理的如何使用IOS 8 XCode 6 beta从Popover中的按钮关闭UIPopover全部内容,希望文章能够帮你解决如何使用IOS 8 XCode 6 beta从Popover中的按钮关闭UIPopover所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1031508.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存