首页 > 移动平台 > 详细

iOS-设备类型和系统版本

时间:2015-05-20 18:29:16      阅读:158      评论:0      收藏:0      [点我收藏+]

1、iPhone 系统版本

1. UIDevice

@interface UIDevice : NSObject
+ (UIDevice *)currentDevice;

@property(nonatomic,readonly,retain) NSString    *name;              // 设备名称
@property(nonatomic,readonly,retain) NSString    *model;             // e.g. @"iPhone", @"iPod touch"
@property(nonatomic,readonly,retain) NSString    *localizedModel;    // localized version of model
@property(nonatomic,readonly,retain) NSString    *systemName;        // e.g. @"iOS"
@property(nonatomic,readonly,retain) NSString    *systemVersion;     // e.g. @"4.0"
@end
代码:
UIDevice *device = [UIDevice currentDevice];
		
NSLog(@"%@",device.name);
NSLog(@"%@",device.model);
NSLog(@"%@",device.localizedModel);
NSLog(@"%@",device.systemName);
NSLog(@"%@",device.systemVersion);

2. 获取系统版本

floor(NSFoundationVersionNumber)

系统版本:

#if TARGET_OS_IPHONE
#define NSFoundationVersionNumber_iPhoneOS_2_0	678.24
#define NSFoundationVersionNumber_iPhoneOS_2_1  678.26
#define NSFoundationVersionNumber_iPhoneOS_2_2  678.29
#define NSFoundationVersionNumber_iPhoneOS_3_0  678.47
#define NSFoundationVersionNumber_iPhoneOS_3_1  678.51
#define NSFoundationVersionNumber_iPhoneOS_3_2  678.60
#define NSFoundationVersionNumber_iOS_4_0  751.32
#define NSFoundationVersionNumber_iOS_4_1  751.37
#define NSFoundationVersionNumber_iOS_4_2  751.49
#define NSFoundationVersionNumber_iOS_4_3  751.49
#define NSFoundationVersionNumber_iOS_5_0  881.00
#define NSFoundationVersionNumber_iOS_5_1  890.10
#define NSFoundationVersionNumber_iOS_6_0  992.00
#define NSFoundationVersionNumber_iOS_6_1  993.00
#define NSFoundationVersionNumber_iOS_7_0 1047.20
#define NSFoundationVersionNumber_iOS_7_1 1047.25
#endif
示例:

if (floor(NSFoundationVersionNumber) < 993.0) {
	// iOS 6.1 or earlier
} else {
	//iOS 7 or later
}


iOS-设备类型和系统版本

原文:http://blog.csdn.net/wangxiaoit/article/details/45872559

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!