現在、Apple Watchを使用してヨー角、ピッチ角およびロール角を計算しています。CoreMotionでデバイスモーションを計算中にApple WatchおよびSwiftがクラッシュする
ただし、Core Motion機能を使用しようとすると、アプリがクラッシュします。誰もこの問題を経験しましたか?
if motionManager.deviceMotionAvailable{
self.referenceAttitude = self.deviceMotionManger.attitude
let currentAttitude : CMAttitude = self.deviceMotionManger.attitude
currentAttitude.multiplyByInverseOfAttitude(self.referenceAttitude)
self.Yaw.setText("Yaw " + String(format: "%.1f", currentAttitude.yaw))
self.Pitch.setText("Pitch " + String(format: "%.1f", currentAttitude.pitch))
self.Roll.setText("Roll " + String(format: "%.1f", currentAttitude.roll))
}
else {
self.Yaw.setText("device motion is not" + String(motionManager.deviceMotionActive))
}
どのようなエラーでクラッシュしますか? – zoul
下記のコメントは私の質問に答えました。他のセンサーはリンゴウォッチでは機能しません。 @ zoul –