Swift用CoreMotion得到屏幕当前方向的方法

前端之家收集整理的这篇文章主要介绍了Swift用CoreMotion得到屏幕当前方向的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如题,代码如下:


// CMMotion

if motionManager.deviceMotionAvailable {

motionManager.deviceMotionUpdateInterval = 1.0

let queue = NSOperationQueue()

motionManager.startDeviceMotionUpdatesToQueue(queue,withHandler: {

motion,error in

let x = motion?.gravity.x

let y = motion?.gravity.y

if fabs(y!) >= fabs(x!) {

if y >= 0 {

// UIDeviceOrientationPortraitUpsideDown;

} else {

// UIDeviceOrientationPortrait;

}

} else {

if x >= 0 {

// UIDeviceOrientationLandscapeRight;

} else {

// UIDeviceOrientationLandscapeLeft;

}

}

}

)

} else {

print("Device motion is not available")

}

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

猜你在找的Swift相关文章