怎么可以被解雇?
解决方法 使用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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)