iOS开发传感器相关

手机里面内置了很多的传感器,例如:光传感器,湿度传感器,温度传感器,距离传感器等等

//开发传感器相关的东西必须使用真机

//在螺旋仪和加速计所有两种方式push和pull的方式,push的方式是时时检测,pull的方式是需要时获取检测值

/*

加速计push的使用步骤:

1.创建运动管理者

_mgr = [[CMMotionManager alloc] init];

2.判断手机加速计是否可用

if (!self.mgr.isAccelerometerAvailable) {

NSLog(@"加速计不可使用,请更换手机");

return;

}

3.设置取样间隔

self.mgr.accelerometerUpdateInterval = 1.0/30.0;

4.开启检测

[self.mgr startAccelerometerUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMAccelerometerData * _Nullable accelerometerData, NSError * _Nullable error) {

CMAcceleration  acceleration =  accelerometerData.acceleration;

NSLog(@"x:%f  y:%f  z:%f",acceleration.x,acceleration.y,acceleration.z);

}];

2.陀螺仪pull方式使用步骤

1.创建运动管理者

_mgr = [[CMMotionManager alloc] init];

2.判断手机陀螺仪是否可用

if (!self.mgr.isGyroAvailable) {

NSLog(@"陀螺仪不可用");

return;

}

3.开启检测

[self.mgr startGyroUpdates];

4.获取需要的值

CMRotationRate   rotationRate =   self.mgr.gyroData.rotationRate;

NSLog(@"x:%f y:%f  z:%f",rotationRate.x,rotationRate.y,rotationRate.z);

//加速计和陀螺仪的用法基本一致--------------

//运动管理者控制器要去拥有它,否则有可能为局部变量,不能使用.

*/

//#import <CoreMotion/CoreMotion.h>导入与运动相关框架

#import "ViewController.h"

#import <CoreMotion/CoreMotion.h>

@interface ViewController ()

@property (nonatomic,strong) CMMotionManager * mgr;

@end

@implementation ViewController

//懒加载创建运动管理者

- (CMMotionManager *)mgr

{

if (_mgr == nil) {

_mgr = [[CMMotionManager alloc] init];

}

return _mgr;

}

- (void)viewDidLoad {

[super viewDidLoad];

}

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event

{

NSLog(@"%zd,%@",motion,event);

NSLog(@"开始摇晃");

}

- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event

{

NSLog(@"%zd,%@",motion,event);

NSLog(@"摇晃取消");

}

- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event

{

NSLog(@"%zd,%@",motion,event);

NSLog(@"摇晃结束");

}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event

{

//加速计相关

//    CMAcceleration   acceleration =    self.mgr.accelerometerData.acceleration;

//    NSLog(@"x:%f  y:%f  z:%f",acceleration.x,acceleration.y,acceleration.z);

//加速计相关

//陀螺仪相关

CMRotationRate   rotationRate =   self.mgr.gyroData.rotationRate;

NSLog(@"x:%f y:%f  z:%f",rotationRate.x,rotationRate.y,rotationRate.z);

}

- (void)pullGyro

{

if (!self.mgr.isGyroAvailable) {

NSLog(@"陀螺仪不可用");

return;

}

[self.mgr startGyroUpdates];

}

- (void)pushGyro

{

//判断手机的陀螺仪是否可用

if (!self.mgr.gyroAvailable) {

NSLog(@"陀螺仪不可用,请更换手机");

return;

}

//设置采样间隔

self.mgr.gyroUpdateInterval = 1.0/20.0;

//开始检测陀螺仪的变化

[self.mgr startGyroUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMGyroData * _Nullable gyroData, NSError * _Nullable error) {

CMRotationRate  rotationRate =   self.mgr.gyroData.rotationRate;

NSLog(@"x:%f y:%f z:%f",rotationRate.x,rotationRate.y,rotationRate.z);

}];

}

- (void)pullAccelerometer

{

if (!self.mgr.isAccelerometerAvailable) {

NSLog(@"加速计不可使用,请更换手机");

return;

}

[self.mgr startAccelerometerUpdates];

}

- (void)pushAccelerometer

{

//CMMotionManager * mgr = [[CMMotionManager alloc] init];

//判断加速计是否可用

if (!self.mgr.isAccelerometerAvailable) {

NSLog(@"加速计不可用,请更换手机");

return;

}

//设置采样间隔

self.mgr.accelerometerUpdateInterval = 1.0/30.0;

[self.mgr startAccelerometerUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMAccelerometerData * _Nullable accelerometerData, NSError * _Nullable error) {

CMAcceleration  acceleration =  accelerometerData.acceleration;

NSLog(@"x:%f  y:%f  z:%f",acceleration.x,acceleration.y,acceleration.z);

}];

}

- (void)proximityMonitoring

{

//开启距离传感器

[UIDevice currentDevice].proximityMonitoringEnabled = YES;

//监听距离的变化

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(proximityStateDidChange:) name:UIDeviceProximityStateDidChangeNotification object:nil];

}

- (void)proximityStateDidChange:(NSNotification*)noti

{

if ([UIDevice currentDevice].proximityState == YES) {

NSLog(@"有物品靠近");

}else{

NSLog(@"物品离开");

}

}

- (void)dealloc

{

[[NSNotificationCenter defaultCenter] removeObserver:self];

}

时间: 2024-11-02 14:04:26

iOS开发传感器相关的相关文章

iOS开发,UITableView相关问题

第一条:UITableViewCell 内容的设置 //文本放到最后 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:_dataArr.count - 1 inSection:0]; [_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES]; //刷新指定cell NSIndexP

iOS开发证书相关(简述)

一.开发者账号分类 一般分为个人的.企业的.商业的三种,详细自己百度. 二.Certificates 证书.Identifiers 标示符.Profiles 描述文件 的简介 1.证书(Certificates) 即安装在电脑上,只有安装了证书的电脑,才有可能进行真机调试. - All - Develpment 开发的证书 - 最多可以有两个证书 - Production 商品化的证书,上架,发布 举例:申请开发者证书步骤 (1)登陆苹果开发者主页 https://developer.apple

iOS开发 - 音频相关

一.简介 简单来说,音频可以分为 2 种 1.音效 又称『短音频』,通常在程序中的播放时长为 1 ~ 2 s 在应用程序中起到点缀效果,提升整体用户体验 2.音乐 比如游戏中的『背景音乐』,一般播放时间较长 播放音频可以使用框架:AVFoundation.framework 二.音效的播放 //1.获得音效文件的路径 NSURL *url = [[NSBundle mainBundle] URLForResource:@"aaa.wav" withExtension:nil]; //2

iOS 开发,相关网址

说明 网址 苹果开发者中心 https://developer.apple.com/account/#/welcome App Store Connect 帮助 https://help.apple.com/app-store-connect/?lang=zh-cn iTunes Connect:管理应用程序的地方 https://appstoreconnect.apple.com/WebObjects/iTunesConnect.woa/ra/gettingstarted 原文地址:https

【IOS】Mac和IOS开发资源汇总

本文主要汇集一些苹果开发的资源,会经常更新,建议大家把这篇文章单独收藏(在浏览器中按**command+D**). 今天收录了许多中文网站和博客.大家一定要去感受一下哦. 如果大家有知道不错的站点,可以告诉我.  目录 1.苹果官方文档 2.邮件列表 3.论坛 4.网站 5.博客 6.大会 7.播客和录像 正文 1.苹果官方文档 构建iOS程序:下面的这篇文章介绍了 iOS 程序开发的过程: Start Developing iOS Apps Today 构建Mac OS X程序:下面这篇文章介

开始学习iOS开发

开始学习iOS开发了,从昨天开始看了「iOS Apprentice」的第一本,写了一个简单的小游戏,虽然之前也看过一些iOS开发的相关东西,但是系统的看书学这是第一次(之前看了两节斯坦福大学的公开课写了一个简单的计算器). 「iOS Apprentice」应该算是很好的入门书了,如果有一门面向对象语言的基础的话,看起来应该是很快的,我看第一本书(大概150页左右)加上编码的时间一共用了6小时,期间包括看官方文档查资料的时间,所以如果只是跟着书上来做的话时间应该会更少一点.看完了第一本书大概就知道

Mac和iOS开发资源汇总

转自:http://www.tairan.com/archives/4647 本文主要汇集一些苹果开发的资源.会常常更新.建议大家把这篇文章单独收藏(在浏览器中按command+D). 文件夹 1.苹果官方文档 2.邮件列表 3.论坛 4.站点 5.博客 6.大会 7.播客和录像 正文 1.苹果官方文档 构建iOS程序:以下的这篇文章介绍了 iOS 程序开发的过程: Start Developing iOS Apps Today 构建Mac OS X程序:以下这篇文章介绍了Mac OS X开发的

苹果开发证书相关BLOG与Delphi IOS环境安装(超详细)

注:有好的资源,请添加了上传,上传后,通知管理员,删除旧文件,累积相关的学习资源,方便新手学习 一.相关论坛http://www.2ccc.com/ delphi 合子 www.2pascal.com (移动开发群主推论坛)https://quality.embarcadero.com 官方QC,看哪些bug有人提交过了没 http://dn.embarcadero.com/firemonkey EDN 二 相关个人BLOg.文章等: 万一的BLOg--DELPHI大百科全书http://www

iOS开发 - OC - duplicate symbol _OBJC / undefind symbol 错误的相关处理

前言: 作为一个iOS开发,相信大家都会遇到类似于 “duplicate symbol” 的程序报错. 对于很多新手来说,可能会有点手足无措,因为这种类型的报错一般并非是代码的逻辑错误,大部分情况下是在编译过程出错导致的,因此相对来说排查不易.在前几天,我在引用了两个SDK的过程中出现了这个问题,运用不同的手段最终解决了这个问题.今天本文就这个错误进行一个详细的分析以及如何处理做一个探讨,如果有错误的地方还请指出. 一.duplicate symbol /undefind  symbol出现的原