服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - IOS 陀螺仪开发(CoreMotion框架)实例详解

IOS 陀螺仪开发(CoreMotion框架)实例详解

2021-02-03 15:46iOS开发网 IOS

这篇文章主要介绍了IOS 陀螺仪开发实例详解的相关资料,介绍了螺旋仪参数意义及CoreMotion框架,需要的朋友可以参考下

ios陀螺仪 参数意义

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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三个方向,参考下图:

IOS 陀螺仪开发(CoreMotion框架)实例详解

如果只需要知道设备的方向,不需要知道具体方向矢量角度,那么可以使用uidevice进行操作,还可以根据方向就行判断,具体可以参考一下苹果官网代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-(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];
}

 当用户晃动设备的时候,系统会通知每一个在用的设备,可以使本身成为第一响应者:

?
1
2
3
4
5
6
7
- (bool)canbecomefirstresponder {
  return yes;
}
 
- (void)viewdidappear:(bool)animated {
  [self becomefirstresponder];
}

处理motion事件有三种方式,开始(motionbegan),结束(motionended),取消(motioncancelled):

?
1
2
3
- (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方法中处理:

?
1
2
3
4
5
6
7
- (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处理方式:

?
1
2
3
4
5
6
7
8
//判断加速计是否可用
if ([_motionmanager isaccelerometeravailable]) {
  // 设置加速计采样频率
  [_motionmanager setaccelerometerupdateinterval:1 / 40.0];
  [_motionmanager startaccelerometerupdates];
} else {
  nslog(@"博客园-flyelephant");
}

触摸结束:

?
1
2
3
4
-(void)touchesended:(nsset *)touches withevent:(uievent *)event{
   cmacceleration acceleration=_motionmanager.accelerometerdata.acceleration;
  nslog(@"%f---%f---%f",acceleration.x,acceleration.y,acceleration.z);
}

push处理方式:

?
1
2
3
4
@property (strong,nonatomic) cmmotionmanager *motionmanager;
 
@property (strong,nonatomic) nsoperationqueue *quene;
_motionmanager=[[cmmotionmanager alloc]init];<br>//判断加速计是否可用<br>if ([_motionmanager isaccelerometeravailable]) {<br>    // 设置加速计频率<br>    [_motionmanager setaccelerometerupdateinterval:1 / 40.0];<br>    //开始采样数据<br>    [_motionmanager startaccelerometerupdatestoqueue:_quene withhandler:^(cmaccelerometerdata *accelerometerdata, nserror *error) {<br>        nslog(@"%f---%f",accelerometerdata.acceleration.x,accelerometerdata.acceleration.y);<br>    }];<br>} else {<br>    nslog(@"博客园-flyelephant");<br>}<br>

时间设置频率:

 IOS 陀螺仪开发(CoreMotion框架)实例详解

陀螺仪

陀螺仪其实主要方法和方式和加速计没有区别,先看张陀螺仪旋转的角度图片:

IOS 陀螺仪开发(CoreMotion框架)实例详解

陀螺仪更新数据也有两种方式,pull方式(startgyroupdates),push方式(startgyroupdatestoqueue):

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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];
   }
}

 感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

延伸 · 阅读

精彩推荐
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28