我試圖複製應用程序「Dynolicious」的加速計算,但我不確定在哪裏頭來計算此。我使用Core Motion
還是使用其他數字進行計算?計算加速度(駕駛汽車)
我已經嘗試使用Core Motion
的userAcceleraion
價值,但它並不像我所尋找的那樣。
coreMotion = [[CMMotionManager alloc]init];
[coreMotion startDeviceMotionUpdates];
//then every second it updates my label...
NSString *accel = [NSString stringWithFormat:@"%f", [[coreMotion accelerometerData]acceleration].x];
accelerationLabel.text = accel;
即我想我的價值觀出來像0.4,-0.4等