码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
iOS-Get the NSString height in iOS 7
#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
识别 判断 iOS设备 信息
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
判断iPhone还是iPad设备
1. 用[UIDevice currentDevice].model,这个返回的是一个NSString,你可以做如下判断就能知道设备是iPad还是iPhone. if ([[UIDevice currentDevice].model rangeOfString:@"iPad"].location !
分类:其他好文   时间:2016-02-25 13:43:03    阅读次数:183
通讯录——单例
//什么是单例? //单例就是单个实例对象,保证对象不管创建多少次,都是唯一一个 //UIScreen UIDevice NSFileManager NSUserDefaults /* 系统单例类: [UIScreen mainScreen] [UIdevice currentDevice] [NS
分类:其他好文   时间:2016-02-23 12:57:17    阅读次数:111
自定义PageControl样式
#define iOS7 ([[UIDevice currentDevice].systemVersion doubleValue] >= 7.0) //调用方法 改变PageControl样式 [self changePageControlImage:self.detailPageControl]
分类:其他好文   时间:2016-02-22 00:09:44    阅读次数:284
present一个半透明的ViewController的方法
RecommandViewController *recommandVC = [[RecommandViewController alloc]init]; if([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0){ recomm
分类:其他好文   时间:2016-02-20 17:22:22    阅读次数:116
setTintColor和setBarTintColor的区别
原文转自博客-http://blog.sina.com.cn/u/2805226174 IOS7之前,setTintColor是可以修改背景色的,ios7之后修改背景色只能用setBarTintColor。所以要用判断区分开: 1 if ([[UIDevice currentDevice] syst
分类:其他好文   时间:2016-02-19 18:56:45    阅读次数:179
获取系统版本
#define DeviceVersion [[UIDevice currentDevice].systemVersion floatValue] if (DeviceVersion >= 9.0) { self.mapView.showsScale = YES; }
分类:其他好文   时间:2016-01-28 13:54:51    阅读次数:164
174条   上一页 1 2 3 4 5 6 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!