IOS 陀螺儀開發(CoreMotion架構)執行個體詳解_IOS

來源:互聯網
上載者:User

iOS陀螺儀 參數意義

self.mManager = [[CMMotionManager alloc]init];  self.mManager.deviceMotionUpdateInterval = 0.5;    if (self.mManager.gyroAvailable) {    [self.mManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMDeviceMotion * _Nullable motion, NSError * _Nullable error) {      NSLog(@"RotationRate X:%.2lf Y:%.2lf Z:%.2lf ",motion.userAcceleration.x,motion.userAcceleration.y,motion.userAcceleration.z);    }];  }
 

x軸 頭 靠近 負數 Y參數
x軸 頭 遠離 正數

y軸 左側 高 正數 X參數
y軸 右側 高 負數

下面介紹下  CoreMotion架構

 CoreMotion是一個專門處理Motion的架構,其中包含了兩個部分加速度計和陀螺儀,在iOS4之前加速度計是由UIAccelerometer類來負責採集資料,現在一般都是用CoreMotion來處理加速度過程,不過由於UIAccelerometer比較簡單,同樣有人在使用。加速計由三個座標軸決定,使用者最常見的操作裝置的動作移動,晃動手機(搖一搖),傾斜手機都可以被裝置檢測到,加速計可以檢測到線性變化,陀螺儀可以更好的檢測到偏轉的動作,可以根據使用者的動作做出相應的動作,iOS模擬器無法類比以上動作,真機調試需要開發人員帳號。

加速計

加速計的x,y,z三個方向,參考下圖:

如果只需要知道裝置的方向,不需要知道具體方向向量角度,那麼可以使用UIDevice進行操作,還可以根據方向就行判斷,具體可以參考一下蘋果官網代碼:

-(void) viewDidLoad {   // Request to turn on accelerometer and begin receiving accelerometer events   [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:nil];} - (void)orientationChanged:(NSNotification *)notification {   // Respond to changes in device orientation} -(void) viewDidDisappear {   // Request to stop receiving accelerometer events and turn off accelerometer   [[NSNotificationCenter defaultCenter] removeObserver:self];   [[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];}

 當使用者晃動裝置的時候,系統會通知每一個在用的裝置,可以使本身成為第一響應者:

- (BOOL)canBecomeFirstResponder {  return YES;} - (void)viewDidAppear:(BOOL)animated {  [self becomeFirstResponder];}

處理Motion事件有三種方式,開始(motionBegan),結束(motionEnded),取消(motionCancelled):

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event NS_AVAILABLE_IOS(3_0);- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event NS_AVAILABLE_IOS(3_0);- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event NS_AVAILABLE_IOS(3_0);

motionEnded方法中處理:

- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {  if (motion == UIEventSubtypeMotionShake)  {    // FlyElephant http://www.cnblogs.com/xiaofeixiang    [[NSNotificationCenter defaultCenter] postNotificationName:@"FlyElephant" object:self];  }}

CoreMotion在處理加速計資料和陀螺儀資料的時是一個非常重要的架構,架構本身整合了很多演算法擷取原生的資料,而且能很好的展現出來,CoreMotion與UIKit不同,串連的是UIEvent而不是事件響應鏈。CoreMotion相對於接收資料只是更簡單的分發motion事件。

CMMotionManager類能夠使用到裝置的所有移動資料(motion data),Core Motion架構提供了兩種對motion資料的操作方式:

pull方式:能夠以CoreMotionManager的唯讀方式擷取當前任何感應器狀態或是組合資料;

push方式:是以塊或者閉包的形式收集到想要得到的資料並且在特定周期內得到即時的更新;

pull處理方式:

//判斷加速計是否可用if ([_motionManager isAccelerometerAvailable]) {  // 設定加速計採樣頻率  [_motionManager setAccelerometerUpdateInterval:1 / 40.0];  [_motionManager startAccelerometerUpdates];} else {  NSLog(@"部落格園-FlyElephant");}

觸摸結束:

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{   CMAcceleration acceleration=_motionManager.accelerometerData.acceleration;  NSLog(@"%f---%f---%f",acceleration.x,acceleration.y,acceleration.z);}

push處理方式:

@property (strong,nonatomic) CMMotionManager *motionManager; @property (strong,nonatomic) NSOperationQueue *quene;_motionManager=[[CMMotionManager alloc]init];
//判斷加速計是否可用
if ([_motionManager isAccelerometerAvailable]) {
    // 設定加速計頻率
    [_motionManager setAccelerometerUpdateInterval:1 / 40.0];
    //開始採樣資料
    [_motionManager startAccelerometerUpdatesToQueue:_quene withHandler:^(CMAccelerometerData *accelerometerData, NSError *error) {
        NSLog(@"%f---%f",accelerometerData.acceleration.x,accelerometerData.acceleration.y);
    }];
} else {
    NSLog(@"部落格園-FlyElephant");
}

時間設定頻率:

 

陀螺儀

陀螺儀其實主要方法和方式和加速計沒有區別,先看張陀螺儀旋轉的角度圖片:

陀螺儀更新資料也有兩種方式,pull方式(startGyroUpdates),push方式(startGyroUpdatesToQueue):

static const NSTimeInterval gyroMin = 0.01; - (void)startUpdatesWithSliderValue:(int)sliderValue {    // Determine the update interval   NSTimeInterval delta = 0.005;   NSTimeInterval updateInterval = gyroMin + delta * sliderValue;    // Create a CMMotionManager   CMMotionManager *mManager = [(APLAppDelegate *)[[UIApplication sharedApplication] delegate] sharedManager];   APLGyroGraphViewController * __weak weakSelf = self;    // Check whether the gyroscope is available   if ([mManager isGyroAvailable] == YES) {     // Assign the update interval to the motion manager     [mManager setGyroUpdateInterval:updateInterval];     [mManager startGyroUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMGyroData *gyroData, NSError *error) {        [weakSelf.graphView addX:gyroData.rotationRate.x y:gyroData.rotationRate.y z:gyroData.rotationRate.z];        [weakSelf setLabelValueX:gyroData.rotationRate.x y:gyroData.rotationRate.y z:gyroData.rotationRate.z];     }];   }   self.updateIntervalLabel.text = [NSString stringWithFormat:@"%f", updateInterval];} - (void)stopUpdates{   CMMotionManager *mManager = [(APLAppDelegate *)[[UIApplication sharedApplication] delegate] sharedManager];   if ([mManager isGyroActive] == YES) {     [mManager stopGyroUpdates];   }}

 感謝閱讀,希望能協助到大家,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.