-1
我是Xcode的新手,正在嘗試使用加速度計的xyz值。當我這樣做時,我在下面最後兩行得到了預期的表達式錯誤。有誰知道我的問題是什麼?加速度計數據上的期望表達式錯誤
self.motionManager = [[CMMotionManager alloc] init];
self.motionManager.accelerometerUpdateInterval = 0.04;
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[self.motionManager start AccelerometerUpdatesToQueue:queue withHandler:^
(CMAccelerometerData *accelerometerData, NSError *error(];
**// I got the expected expression error on the two lines above**
這只是@Ewan Mellor的答案的副本,但其解釋性較少。 –