#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
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
#define iOS7 ([[UIDevice currentDevice].systemVersion doubleValue] >= 7.0) //调用方法 改变PageControl样式 [self changePageControlImage:self.detailPageControl]
分类:
其他好文 时间:
2016-02-22 00:09:44
阅读次数:
284
RecommandViewController *recommandVC = [[RecommandViewController alloc]init]; if([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0){ recomm
分类:
其他好文 时间:
2016-02-20 17:22:22
阅读次数:
116
原文转自博客-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