-(bool)checkDevice:(NSString*)name { NSString* deviceType = [UIDevice currentDevice].model; NSLog(@"deviceType = %@", deviceType); NSRange range = [de ...
分类:
移动开发 时间:
2017-05-02 23:39:57
阅读次数:
209
异步请求: -(BOOL)getOnlyKey1 { NSString *myUUIDStr = [[[UIDevice currentDevice] identifierForVendor] UUIDString]; __block bool isTrue = false; AFHTTPReque ...
分类:
其他好文 时间:
2017-04-12 11:18:48
阅读次数:
194
iOS 宏定义系统版本的判断 #define iOS7 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) #define iOS7Later ([UIDevice currentDevice].systemVersion.f ...
分类:
移动开发 时间:
2017-01-11 10:10:37
阅读次数:
504
// 获得当前的版本 #define iOS(version) ([UIDevice currentDevice].systemVersion.doubleValue >= (version)) #define ColorA(r, g, b, a) [UIColor colorWithRed:(r) ...
分类:
其他好文 时间:
2017-01-06 18:35:39
阅读次数:
171
一、距离传感器。 大概解释一下距离传感器的功能:它会根据你和iphone间距离不同做出不同的响应。 [objc] view plain copy print? //打开距离传感器 [UIDevice currentDevice].proximityMonitoringEnabled = YES; / ...
分类:
移动开发 时间:
2016-12-30 18:45:36
阅读次数:
304
在iOS7之前, 可以方便的使用 [[UIDevice currentDevice] uniqueIdentifier] 来获取设备的UDID,但是在iOS7之后这个方法不再适用。 你可以用[[UIDevicecurrentDevice]valueForKey:@"uniqueIdentifier" ...
分类:
系统相关 时间:
2016-12-12 15:02:53
阅读次数:
826
清除WKWebView的缓存 OC写法: swift写法再下下面。 清除WKWebView的缓存,让H5页面一刷新就更新至最新的页面 直接上代码~!~~ 要区分iOS9.0和8.0两种 - (void)deleteWebCache { if ([[UIDevice currentDevice].sy ...
分类:
Web程序 时间:
2016-09-09 11:41:58
阅读次数:
1523
一、iPad 1、判断是否在iPad上 BOOL iPad = ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad); 二、UISplitViewController 分割视图控制器 BOOL iPad ...
分类:
移动开发 时间:
2016-08-31 14:07:14
阅读次数:
200
1.判断系统 #define UMSYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrdered ...
分类:
移动开发 时间:
2016-08-22 12:08:31
阅读次数:
172
iOS开发基础知识--碎片3 iOS开发基础知识--碎片3 十二:判断设备 //设备名称 return [UIDevice currentDevice].name; //设备型号,只可得到是何设备,无法得到是第几代设备 return [UIDevice currentDevice].model; / ...
分类:
移动开发 时间:
2016-08-18 10:02:22
阅读次数:
303