出於某種奇怪的原因,這條線:致命錯誤:意外發現零而展開的可選值傾斜問題]
var x = motionManager.accelerometerData.acceleration.x
保持拋出這樣的錯誤:
fatal error: unexpectedly found nil while unwrapping an Optional value
這是其餘的代碼:
var motionManager = CMMotionManager()
if motionManager.accelerometerAvailable == true {
motionManager.startAccelerometerUpdates()
var x = motionManager.accelerometerData.acceleration.x
NSLog("X: %i",x)
}
我將如何實現這個到我的代碼?我從來沒有使用加速度計。 –