记录一下 以备以后用到的时候拿出来看看。以前使用的:1 if (UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Phone) {2 presentViewController(vc, animated: tru....
分类:
移动开发 时间:
2015-11-20 19:47:02
阅读次数:
203
UIDevice类是一个单例,其唯一的实例( [UIDevice currentDevice] ) 代表了当前使用的设备。通过这个实例,可以获得设备的相关信息(包括系统名称,版本号,设备模式等等)。也可以使用使用该实例来监测设备的特征(比如物理方向)。NSString *strName = [[UI...
分类:
移动开发 时间:
2015-11-20 19:28:45
阅读次数:
149
UIApplication *app = [UIApplication sharedApplication]; // 根据用户版本,获取用户权限 if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8) { UIUs...
分类:
其他好文 时间:
2015-11-11 06:19:14
阅读次数:
171
原来iOS8增加了启动授权,需要用户同意下才能注册通知。添加如下代码:- (void)RegistNotificationSettings{ float sysVersion=[[UIDevice currentDevice]systemVersion].floatValue; if (...
分类:
移动开发 时间:
2015-11-09 17:14:18
阅读次数:
273
判断是否是iOS8 //判断是否是iOS8if ([[UIDevice currentDevice].systemVersion doubleValue]>=8.0) {NSLog(@"shi "); }else{NSLog(@"bushi");}
分类:
移动开发 时间:
2015-11-09 15:28:24
阅读次数:
133
- (void)ViewDidLoad { // 打开距离传感器,开启距离检测功能 [UIDevice currentDevice].proximityMonitoringEnabled = YES;// 监听距离改变 [[NSNotificationCenter defaultCent...
分类:
其他好文 时间:
2015-11-06 12:35:34
阅读次数:
147
获取手机当前版本号 //获取硬件信息 UIDevice *device=[UIDevice currentDevice]; //输出版本号 NSLog(@"%@",device.systemVersion);获取手机方向1 通知 //检测设备朝向使用UIDevice,beg...
分类:
其他好文 时间:
2015-10-27 13:18:09
阅读次数:
127
下面就一句话就能获取UUID,代码如下 NSString?*clientID=[UIDevice?currentDevice].identifierForVendor.UUIDString;
????NSLog(@"clientID:%@",clientID);//clientID:39967DCE-C08E-483E-9A70-9F16BB9DF...
分类:
其他好文 时间:
2015-10-26 12:20:23
阅读次数:
196
建议写一个全局的宏IOS9的[UIApplicationsharedApplication].keyWindow 建议用代理的+(UIWindow *)getKeyWindow{ if ([[[UIDevice currentDevice] systemVersion] floatValue] >....
分类:
移动开发 时间:
2015-10-23 10:03:03
阅读次数:
345
if ([UIDevice currentDevice].systemVersion.doubleValue > 8.0) { [self.locMgr requestAlwaysAuthorization]; } else { [self.locMgr startUpdatingLo...
分类:
移动开发 时间:
2015-10-21 15:47:10
阅读次数:
140