HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 为iPhone 6 Plus设置UIModalPresentationStyle?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在所有设备和所有方向上的弹出窗口中始终显示视图控制器.我试图通过采用UIPopoverPresentationControllerDelegate并设置sourceView和sourceRect来实现这一目标.故事板中的segue被配置为Present As Popover segue.这适用于所有设备和方向,除了横向的iPhone 6 Plus.在这种情况下,视图控制器在表单中从屏幕底部向上滑动.如何防止它始终出现在弹出框中?

override func prepareForSegue(segue: UIStoryboardSegue,sender: AnyObject?) {
    let popoverPresentationController = segue.desTinationViewController.popoverPresentationController
    popoverPresentationController?.delegate = self
    popoverPresentationController?.sourceView = self.titleLabel!.superview
    popoverPresentationController?.sourceRect = self.titleLabel!.frame
}

func adaptivePresentationStyleForPresentationController(controller: UIPresentationController) -> UIModalPresentationStyle {
    return UIModalPresentationStyle.None
}

解决方法

实现new(从iOS 8.3开始)adaptivePresentationStyleForPresentationController:TraitCollection:UIAdaptivePresentationControllerDelegate的方法

- (UIModalPresentationStylE)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller TraitCollection:(UITraitCollection *)TraitCollection {
    // This method is called in iOS 8.3 or later regardless of Trait collection,in which case use the original presentation style (UIModalPresentationNone signals no adaptation)
    return UIModalPresentationNone;
}

UIModalPresentationNone告诉演示控制器使用原始演示样式,在您的情况下将显示弹出窗口.

大佬总结

以上是大佬教程为你收集整理的ios – 为iPhone 6 Plus设置UIModalPresentationStyle?全部内容,希望文章能够帮你解决ios – 为iPhone 6 Plus设置UIModalPresentationStyle?所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。