iOS-裝置類型和系統版本

來源:互聯網
上載者:User

iOS-裝置類型和系統版本

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_0678.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}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.