swift 中的 supportedInterfaceOrientationsForWindow

前端之家收集整理的这篇文章主要介绍了swift 中的 supportedInterfaceOrientationsForWindow前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文地址
大家在写swift 的时候是不是发现 func application(application: UIApplication,supportedInterfaceOrientationsForWindow window: UIWindow?) -> Int {
里面
UIInterfaceOrientationMaskPortrait 等等枚举不见了…..而且还不给提示…….所以到OC里代码里把枚举的值,直接自己换算写上去
UIInterfaceOrientationMaskPortrait = 1<<1
UIInterfaceOrientationMaskLandscapeLeft = 1 << 2
UIInterfaceOrientationMaskLandscapeRight = 1 << 3
UIInterfaceOrientationMaskPortraitUpsideDown = 1<<4

原文链接:https://www.f2er.com/swift/326549.html

猜你在找的Swift相关文章