iOS開發-Object-C獲取手機裝置資訊(UIDevice)
阿新 • • 發佈:2018-12-20
一、獲取UiDevice裝置資訊
// 獲取裝置名稱 NSString *name = [[UIDevice currentDevice] name]; // 獲取裝置系統名稱 NSString *systemName = [[UIDevice currentDevice] systemName]; // 獲取系統版本 NSString *systemVersion = [[UIDevice currentDevice] systemVersion]; // 獲取裝置模型 NSString *model = [[UIDevice currentDevice] model]; // 獲取裝置本地模型NSString *localizedModel = [[UIDevice currentDevice] localizedModel];
二、獲取Bundle的相關資訊
NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary]; // app名稱 NSString *appName = infoDict[@"CFBundleName"]; // app版本 NSString *appVersion = infoDict[@"CFBundleShortVersionString"]; // app build版本NSString *appBuild = infoDict[@"CFBundleVersion"];
NSLocal獲取本地化資料:
// 獲取使用者的語言偏好設定列表 NSLog(@"%@", [NSLocale preferredLanguages]); // 獲取系統所有本地化識別符號陣列列表 NSLog(@"%@", [NSLocale availableLocaleIdentifiers]); // 獲取所有已知合法的國家程式碼陣列列表 NSLog(@"%@", [NSLocale ISOCountryCodes]); // 獲取所有已知合法的ISO貨幣程式碼陣列列表NSLog(@"%@", [NSLocale ISOCurrencyCodes]); // 獲取所有已知合法的ISO語言程式碼陣列列表 NSLog(@"%@", [NSLocale ISOLanguageCodes]); // 獲取當前系統設定語言的識別符號 // 方法一 NSLog(@"%@", [[NSLocale currentLocale] localeIdentifier]); // 方法二 NSLog(@"%@", [[NSLocale currentLocale] objectForKey:NSLocaleIdentifier]);