iOS開發-Object-C獲取手機設備信息(UIDevice)

1、獲取UiDevice設備信息html

// 獲取設備名稱
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];

 

2、獲取Bundle的相關信息數組

NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary];
// app名稱
NSString *appName = infoDict[@"CFBundleName"];
// app版本
NSString *appVersion = infoDict[@"CFBundleShortVersionString"];
// app build版本
NSString *appBuild = infoDict[@"CFBundleVersion"];

 

NSLocal獲取本地化數據:app

// 獲取用戶的語言偏好設置列表
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]);

 

IOS開發-Swift獲取手機設備信息(UIDevice)ui

相關文章
相關標籤/搜索