#pragma mark - 设备型号识别 #define is_IOS_7 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) #define iPhone4s ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeE...
分类:
其他好文 时间:
2015-10-20 15:30:47
阅读次数:
226
浮点数不准,这个貌似基本都知道。但是在开发中很多人没有对它的使用产生警觉。如果你在开发iOS应用,你可能使用过如下代码判断系统版本: if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) ...
分类:
其他好文 时间:
2015-10-14 12:52:06
阅读次数:
148
三种常用的办法获取iOS设备的型号:1. [UIDevice currentDevice].model (推荐);2. uname(struct utsname *name) ,使用此函数需要#include;3.sysctlbyname(const char *name, void *oldp, ...
分类:
移动开发 时间:
2015-10-13 20:41:25
阅读次数:
202
//手机序列号 NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]; NSLog(@"手机序列号: %@",identifierNumber); //手机别名: 用户定义的名称 NS...
分类:
移动开发 时间:
2015-10-13 13:40:51
阅读次数:
140
系统提供的接口[[UIDevice currentDevice] model]只能获取iphone,ipad无法具体到iphone6等,下面这个接口可以获取到具体的,后续有新的系统在增加+ (NSString*)deviceVersion{ // 需要加入#import "sys/utsnam...
分类:
移动开发 时间:
2015-10-09 13:34:23
阅读次数:
144
如果需要获得UIDeviceOrientation的转换消息的话,只需要: [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; [[NSNotificationCenter defaultCenter] ...
分类:
其他好文 时间:
2015-10-07 11:59:24
阅读次数:
175
float?version?=?[[[UIDevice?currentDevice]?systemVersion]?floatValue];
if?(version?>=?8.0)?{
????UIUserNotificationSettings?*settings?=?[UIUserNotificationSettings?settingsForTy...
分类:
移动开发 时间:
2015-09-30 16:37:19
阅读次数:
252
通过UIDevice.currentDevice()来获取设备,可以取得设备当前的方向。同时,我们可以添加一个通知来监听设备方向的变化,这样在开发中可以对不同的方向定制不同的排版布局界面。下面通过一个样例,演示如何监测设备方向:123456789101112131415161718192021222...
分类:
编程语言 时间:
2015-09-28 11:41:03
阅读次数:
191
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { SEL selector = NSSelectorFromString(@"setOrientation:"); ...
分类:
其他好文 时间:
2015-09-17 23:26:27
阅读次数:
478
指南针图片 IBOutlet UIImageView *compassView 1 #import "ViewController.h" 2 #import 3 4 #define isIOS(version) ([[UIDevice currentDevice].systemVersion f.....
分类:
移动开发 时间:
2015-09-15 17:58:04
阅读次数:
1026