码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
ios 苹果原生系统定位 CLLocationManager
首先要干这些事 下面的方法亲测可用 DNLogFUNC //初始化位置管理对象 _locationManager = [[CLLocationManager alloc] init]; //请求用户授权 if ([[[UIDevice currentDevice] systemVersion] fl ...
分类:移动开发   时间:2016-07-12 17:31:04    阅读次数:249
ios 宏定义 系统版本 判定
====================================================== 当需要判断iOS系统版本的时候,相信很多人都会这么干: #define SystemVersion [[UIDevice currentDevice] systemVersion].floa ...
分类:移动开发   时间:2016-07-06 23:26:11    阅读次数:816
适配iOS 7 和iOS 8屏幕尺寸宏定义
#define IS_IOS8_0 ([[[UIDevice currentDevice] systemVersion] floatValue] < 8.0) #define WIDTH [UIScreen mainScreen].bounds.size.width #define HEIGHT [ ...
分类:移动开发   时间:2016-06-30 18:17:10    阅读次数:156
iOS开发-常见宏定义
有些时候,我们需要将代码简洁化,这样便于读代码。我们可以将一些不变的东东抽取出来,将变化的东西作为参数。定义为宏,这样在写的时候就简单多了。下面例举了一些常用的宏定义和大家分享:1. 判断设备的操作系统是不是ios71.#define IOS7 ( [[[UIDevice currentDevice ...
分类:移动开发   时间:2016-06-29 19:04:30    阅读次数:270
横竖屏切换
单一控制器的横竖屏切换 if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { SEL selector = NSSelectorFromString(@"setOrientation:"); N ...
分类:其他好文   时间:2016-06-20 12:35:44    阅读次数:154
获取iOS系统版本
获取ios设备系统信息的方法 之 [UIDevice currentDevice] 获取iphone的系统信息使用[UIDevice currentDevice],信息如下: [[UIDevice currentDevice] systemName]:系统名称,如iPhone OS [[UIDevi ...
分类:移动开发   时间:2016-06-06 10:19:22    阅读次数:195
判断版本号
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 4.0) { } ...
分类:其他好文   时间:2016-05-27 07:05:49    阅读次数:155
iOS 类微信语音播放之切换听筒和扬声器的方法解决方案
[[UIDevice currentDevice] setProximityMonitoringEnabled:NO]; //建议在播放之前设置yes,播放结束设置NO,这个功能是 //添加监听 self @selector(sensorStateChange:) @"UIDeviceProximi ...
分类:微信   时间:2016-04-30 18:07:52    阅读次数:315
获取设备、APP的一些信息
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?--> 获取设备的一些信息: UIDevice *device = [UIDevice currentDevice]; @property(nonatomic,readonly,stron ...
分类:移动开发   时间:2016-04-20 12:59:39    阅读次数:160
判断版本号
NSString * identifierForVendor =[[UIDevice currentDevice].identifierForVendor UUIDString]; NSLog(@"%@dd",identifierForVendor);//唯一标识 [[UIDevice curren ...
分类:其他好文   时间:2016-04-14 01:17:36    阅读次数:128
174条   上一页 1 2 3 4 5 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!