[[UIDevice currentDevice] setProximityMonitoringEnabled:NO]; //建议在播放之前设置yes,播放结束设置NO,这个功能是 //添加监听 self @selector(sensorStateChange:) @"UIDeviceProximi ...
分类:
微信 时间:
2016-04-30 18:07:52
阅读次数:
315
苹果在iOS8.0后推出了UIAlertController以代替UIAlertView,导致的后果就是UIAlertView在iOS9.0之后被deprecated了,也就是iOS8.0之后只能用UIAlertController,iOS8.0之前只能用UIAlertView。所以如果想同时兼容iOS7和iOS8,就判断一下系统的版本,demo代码如下:
if ([[[UIDevice cur...
分类:
其他好文 时间:
2016-04-29 15:29:23
阅读次数:
269
1.获取设备的信息 UIDevice *device = [[UIDevice alloc] init]; NSString *name = device.name; //获取设备所有者的名称 NSString *model = device.name; //获取设备的类别 NSString *ty ...
分类:
移动开发 时间:
2016-04-27 18:53:46
阅读次数:
197
<!--?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
//这个变量用于记录授权是否成功,即用户是否允许我们访问通讯录 int __block tip=0; //声明一个通讯簿的引用 ABAddressBookRef addBook =nil; //因为在IOS6.0之后和之前的权限申请方式有所差别,这里做个判断 if ([[UIDevice curre ...
分类:
其他好文 时间:
2016-04-14 01:10:49
阅读次数:
196
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending ...
分类:
移动开发 时间:
2016-04-07 18:24:22
阅读次数:
330
一些常用手机信息获取方法: 在获取版本号问题上,开发中经常使用的是 [[UIDevice currentDevice].systemVersion floatValue]; 但是这样取到是不准确的,比如有的系统版本是8.2,这样取到的有的时候是8.1998,这样你 手机系统版本号>=8.2的话就会出
分类:
移动开发 时间:
2016-03-20 17:48:44
阅读次数:
183
EITHER try this library: http://github.com/erica/uidevice-extension/ (by Erica Sadun). (Sample Code): [[UIDevice currentDevice] platformType] // ex: U
分类:
移动开发 时间:
2016-03-02 22:06:08
阅读次数:
261
/** * 判断 当前设备 系统版本 是否大于等于 8 */ if ([[[UIDevice currentDevice] systemVersion] floatValue]>=8) { }
分类:
其他好文 时间:
2016-02-29 14:35:09
阅读次数:
162