码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
判断设备机型和版本号
#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
float陷阱
浮点数不准,这个貌似基本都知道。但是在开发中很多人没有对它的使用产生警觉。如果你在开发iOS应用,你可能使用过如下代码判断系统版本: if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) ...
分类:其他好文   时间:2015-10-14 12:52:06    阅读次数:148
获取iOS设备型号的方法总结
三种常用的办法获取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
iOS获取设备版本信息
系统提供的接口[[UIDevice currentDevice] model]只能获取iphone,ipad无法具体到iphone6等,下面这个接口可以获取到具体的,后续有新的系统在增加+ (NSString*)deviceVersion{ // 需要加入#import "sys/utsnam...
分类:移动开发   时间:2015-10-09 13:34:23    阅读次数:144
需要获取设备方向变化(UIDeviceOrientation)的消息
如果需要获得UIDeviceOrientation的转换消息的话,只需要: [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; [[NSNotificationCenter defaultCenter] ...
分类:其他好文   时间:2015-10-07 11:59:24    阅读次数:175
iOS applicationIconBadgeNumber(后台app红色角标)
float?version?=?[[[UIDevice?currentDevice]?systemVersion]?floatValue]; if?(version?>=?8.0)?{ ????UIUserNotificationSettings?*settings?=?[UIUserNotificationSettings?settingsForTy...
分类:移动开发   时间:2015-09-30 16:37:19    阅读次数:252
Swift - 判断设备方向(或监听设备方向的改变)
通过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
ios 指南针
指南针图片 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
174条   上一页 1 ... 5 6 7 8 9 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!