你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS-獲取Model(設備型號)、Version(設備版本號)、app(程序版本號)等

iOS-獲取Model(設備型號)、Version(設備版本號)、app(程序版本號)等

編輯:IOS開發綜合

IOS-獲取Model(設備型號)、Version(設備版本號)、app(程序版本號)等

NSLog(@uniqueIdentifier: %@, [[UIDevice currentDevice] uniqueIdentifier]);
NSLog(@name: %@, [[UIDevice currentDevice] name]);
NSLog(@systemName: %@, [[UIDevice currentDevice] systemName]);
NSLog(@systemVersion: %@, [[UIDevice currentDevice] systemVersion]);
NSLog(@model: %@, [[UIDevice currentDevice] model]);
NSLog(@localizedModel: %@, [[UIDevice currentDevice] localizedModel]);

 

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];

CFShow(infoDictionary);

// app名稱

NSString *app_Name = [infoDictionary objectForKey:@CFBundleDisplayName];

// app版本

NSString *app_Version = [infoDictionary objectForKey:@CFBundleShortVersionString];

// app build版本

NSString *app_build = [infoDictionary objectForKey:@CFBundleVersion];

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved