面朝上或面朝下风景方向
Face up or Face down LandScape Orientation
我很好奇 swift 4.2 中的 faceUp、faceDown landScape 方向,以前有辅助方法来检查 faceUp、faceDown 的横向方向。任何人都知道这个辅助函数的替代方案。提前致谢。
UIDeviceOrientationIsLandscape(orientation)
我解决了我使用状态栏方向的问题。
if UIApplication.shared.statusBarOrientation == .landscapeLeft || UIApplication.shared.statusBarOrientation == .landscapeRight || UIApplication.shared.statusBarOrientation.isLandscape { return true}
所以如果你正在使用UIDeviceOrientationIsLandscape
这个函数你可以用上面的代码替换它。
我进行了一些搜索并替换为:
UIDeviceOrientationIsLandscape(orientation)
是
UIDevice.current.orientation.isLandscape
我很好奇 swift 4.2 中的 faceUp、faceDown landScape 方向,以前有辅助方法来检查 faceUp、faceDown 的横向方向。任何人都知道这个辅助函数的替代方案。提前致谢。
UIDeviceOrientationIsLandscape(orientation)
我解决了我使用状态栏方向的问题。
if UIApplication.shared.statusBarOrientation == .landscapeLeft || UIApplication.shared.statusBarOrientation == .landscapeRight || UIApplication.shared.statusBarOrientation.isLandscape { return true}
所以如果你正在使用UIDeviceOrientationIsLandscape
这个函数你可以用上面的代码替换它。
我进行了一些搜索并替换为:
UIDeviceOrientationIsLandscape(orientation)
是
UIDevice.current.orientation.isLandscape