博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS传感器的使用
阅读量:6070 次
发布时间:2019-06-20

本文共 1423 字,大约阅读时间需要 4 分钟。

hot3.png

/*    传感器的使用: 1.注册一个传感器通知;    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(stateChange:) name:@"UIDeviceProximityStateDidChangeNotification" object:nil]; 2,设置传感器的proximityMonitoringEnabled属性为YES;  */- (void) toggle: (id) sender{	BOOL isIt = [UIDevice currentDevice].proximityMonitoringEnabled;//判断传感器是否是启动的	NSString *title = isIt ? @"Enable" : @"Disable";	self.navigationItem.rightBarButtonItem = BARBUTTON(title, @selector(toggle:));	[UIDevice currentDevice].proximityMonitoringEnabled = !isIt;//改变传感器状态		self.log = [NSMutableString string];	[self doLog:@"You have %@ the Proximity sensor.", isIt ? @"disabled" : @"enabled"];	if (!isIt) [self doLog:@"View state changes on the debugger consoler as the screen is not readable when blanked."];}- (void) stateChange: (NSNotification *) notification{    NSLog(@"notification.userinfo:%@",notification.userInfo);	NSLog(@"The proximity sensor %@", [UIDevice currentDevice].proximityState ? @"will now blank the screen" : @"will now restore the screen");}- (void) viewDidLoad{	self.navigationController.navigationBar.tintColor = COOKBOOK_PURPLE_COLOR;	self.navigationItem.rightBarButtonItem = BARBUTTON(@"Enable", @selector(toggle:));	    //注册传感器通知	[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(stateChange:) name:@"UIDeviceProximityStateDidChangeNotification" object:nil];}

转载于:https://my.oschina.net/u/936286/blog/133075

你可能感兴趣的文章
dom4j解析xml文件
查看>>
第六周
查看>>
斯坦福大学公开课机器学习:梯度下降运算的学习率a(gradient descent in practice 2:learning rate alpha)...
查看>>
解释一下 P/NP/NP-Complete/NP-Hard 等问题
查看>>
javafx for android or ios ?
查看>>
微软职位内部推荐-Senior Software Engineer II-Sharepoint
查看>>
sql 字符串操作
查看>>
【转】Android布局优化之ViewStub
查看>>
网络安全管理技术作业-SNMP实验报告
查看>>
根据Uri获取文件的绝对路径
查看>>
Fundebug前端JavaScript插件更新至1.6.0,新增test()方法用于测试
查看>>
Flutter 插件开发:以微信SDK为例
查看>>
.NET[C#]中NullReferenceException(未将对象引用到实例)是什么问题?如何修复处理?...
查看>>
边缘控制平面Ambassador全解读
查看>>
Windows Phone 7 利用计时器DispatcherTimer创建时钟
查看>>
程序员最喜爱的12个Android应用开发框架二(转)
查看>>
vim学习与理解
查看>>
DIRECTSHOW在VS2005中PVOID64问题和配置问题
查看>>
MapReduce的模式,算法以及用例
查看>>
《Advanced Linux Programming》读书笔记(1)
查看>>