iOS獲取設(shè)備信息與應(yīng)用信息
圖片來源于網(wǎng)絡(luò)iOS獲取設(shè)備信息在iOS開發(fā)過程中,有時我們想獲取到設(shè)備的系統(tǒng)信息,這時就需要使用到UIDevice類,具體常用信息獲取方式如下:
獲取設(shè)備唯一標(biāo)識,同一個開發(fā)商的APP獲取到的標(biāo)識是相同的,與UDID不同的是,在我們刪除了設(shè)備上同一個開發(fā)商的所有APP之后,下次獲取到的將是不同的標(biāo)識[[UIDevice currentDevice] identifierForVendor];獲取設(shè)備系統(tǒng)名稱,如iPhone OS
[[UIDevice currentDevice] systemName];獲取設(shè)備系統(tǒng)版本,如7.1
[[UIDevice currentDevice] systemVersion];獲取設(shè)備模式,如iPhone或者iPod touch等
[[UIDevice currentDevice] model];獲取設(shè)備本地模式,返回值與model相同,暫不清楚二者區(qū)別
[[UIDevice currentDevice] localizedModel];獲取設(shè)備在'關(guān)于本機(jī)'中的名稱,如劉鵬的iPhone 6S
[[UIDevice currentDevice] name];獲取設(shè)備方向,UIDeviceOrientation是一個枚舉
/* UIDeviceOrientationUnknown, // 未知 UIDeviceOrientationPortrait, // 豎屏,home鍵在下方 UIDeviceOrientationPortraitUpsideDown, // 豎屏,home鍵在上方 UIDeviceOrientationLandscapeLeft, // 橫屏,home鍵在右方 UIDeviceOrientationLandscapeRight, // 橫屏,home鍵在左方 UIDeviceOrientationFaceUp, // 平放,屏幕朝上 UIDeviceOrientationFaceDown // 平放,屏幕朝下 */ [[UIDevice currentDevice] orientation];iOS獲取應(yīng)用信息
在iOS開發(fā)過程中,有時我們想獲取到應(yīng)用的信息,這時就需要使用到NSBundle類,具體常用信息獲取方式如下:
獲取應(yīng)用名稱,如Test[[[NSBundle mainBundle] infoDictionary] objectForKey:@'CFBundleDisplayName'];獲取應(yīng)用短版本號,如1.0(用戶看到的版本號)
[[[NSBundle mainBundle] infoDictionary] objectForKey:@'CFBundleShortVersionString'];應(yīng)用Build版本號,如1.0.8(公司內(nèi)部使用的版本號,在AppStore修改同一個版本的IPA文件時,可以通過自增Build版本號來實現(xiàn)上傳多個)
[[[NSBundle mainBundle] infoDictionary] objectForKey:@'CFBundleVersion'];獲取應(yīng)用identifier,如com.liupeng.test(常用于需要同一份代碼打包成不同應(yīng)用,通過判斷identifier來實現(xiàn)使用不同的第三方key)
[[[NSBundle mainBundle] infoDictionary] objectForKey:@'CFBundleIdentifier'];
轉(zhuǎn)載請注明出處:http://www.jianshu.com/p/d5091396e13c/,請尊重作者勞動成果。
相關(guān)文章:

網(wǎng)公網(wǎng)安備