码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
iOS 地图(MKMapView)
//定位 需要在info中添加NSLocationWhenInUseUsageDescription if ([[UIDevice currentDevice].systemVersion doubleValue]>=8.0) { //获取权限 [self.locat...
分类:移动开发   时间:2015-09-15 16:27:42    阅读次数:209
根据光线感应关闭和开启屏幕
根据光线感应关闭和开启屏幕UIDevice *_curDevice = [UIDevice currentDevice]; [_curDevice setProximityMonitoringEnabled:YES]; NSNotificationCenter *_defaultCenter =.....
分类:其他好文   时间:2015-09-10 19:31:22    阅读次数:139
iOS检测系统版本的宏
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)#define SYSTEM_VERSI...
分类:移动开发   时间:2015-09-08 18:21:28    阅读次数:239
传感器+加速计+摇一摇
概述sensoriPhone自带很多传感器,常见的如下表所示:系统针对各种sensor都有相应的使用方法,eg: 距离传感器使用// 开启距离感应功能[UIDevice currentDevice].proximityMonitoringEnabled = YES;// 监听距离感应的通知[[NSN...
分类:其他好文   时间:2015-09-04 12:24:17    阅读次数:220
常用的宏
//判断ios版本宏 #define?IOS8_OR_LATER(?[[[UIDevice?currentDevice]?systemVersion]?compare:@"8.0"]?!=?NSOrderedAscending?) #define?IOS7_OR_LATER(?[[[UIDevice?currentDevice]?systemVersion...
分类:其他好文   时间:2015-08-31 11:58:34    阅读次数:177
ios7适配一些问题
ios7适配一些问题(http://www.cocoachina.com/ios/20130703/6526.html)1.如何判断版本 如果你已经开发过ios旧版本的app,现在想适配在ios7上,那如何判断现在的版本类型是一个很有用的办法:[[[UIDevice currentDevice] s...
分类:移动开发   时间:2015-08-19 16:38:47    阅读次数:191
iOS获取设备型号的方法
1. [UIDevice currentDevice].model 自己写的看只抓到模拟器和iPhone。暂时不推荐。2.自己写的找的方法再添加。直接NSString* deviceModle= [selfdoDevicePlatform];即可获得?设备型号?- (NSString*) doDe....
分类:移动开发   时间:2015-08-17 19:20:01    阅读次数:130
iOS获取设备信息
NSString *strName = [[UIDevice currentDevice] name]; // Name of the phone as named by user NSString *strSysName = [[UIDevice currentDevice] systemN...
分类:移动开发   时间:2015-08-17 13:54:00    阅读次数:121
iOS语音播放之切换听筒和扬声器
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES]; //建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应 //添加监听 [[NSNotificationCenter defaultCenter] addObserver:self...
分类:移动开发   时间:2015-08-13 12:20:45    阅读次数:232
获取当前手机的电池充电状态以及当前的电量
获取当前手机的电池充电状态以及当前的电量 - (void)viewDidLoad {  [super viewDidLoad];  //打开电池的监听  [UIDevice currentDevice].batteryMonitoringEnabled = YES;  //获取电池的状态  UIDeviceBatteryState BatterySt...
分类:移动开发   时间:2015-08-11 19:00:55    阅读次数:224
174条   上一页 1 ... 6 7 8 9 10 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!