// 獲取當前
的基本資訊字典
nsdictionary
*infodictionary = [[
nsbundle
mainbundle
] infodictionary];
名稱 nsstring
infodictionary
objectforkey
:@"cfbundledisplayname"];
版本 nsstring
infodictionary
objectforkey
:@"cfbundleshortversionstring"];
版本 nsstring
infodictionary
objectforkey
:@"cfbundleversion"];
//手機序列號
nsstring
* identifiernumber = [[uidevice currentdevice] uniqueidentifier];
//手機別名:
使用者定義的名稱 (張三的iphone)
nsstring
* userphonename = [[
uidevice
currentdevice
] name];
//裝置名稱 (ios)
nsstring
* devicename = [[
uidevice
currentdevice
] systemname];
//手機系統版本 (10.2.1)
nsstring
* phoneversion = [[
uidevice
currentdevice
] systemversion];
//手機型號 (iphone)
nsstring
* phonemodel = [[
uidevice
currentdevice
] model];
//地方型號
(國際化區域名稱)
nsstring
* localphonemodel = [[
uidevice
currentdevice
] localizedmodel];
// 需要
#import
+ (nsstring
*)devicemodelname
接著該怎麼呼叫這個類方法就不用我說了吧!
iOS 獲取手機型號,系統版本
新新增判斷iphone 7 iphone 7 plus 我手裡沒有7,判斷不對錶打我 fq找的資料 1.手機系統 iphone os nsstring phoneversion uidevice currentdevice systemversion 2.手機型別 iphone 6 nsstring...
iPhone手機型號及iOS系統版本
手機型號 發布時間 最低ios版本 最高ios版本 備註iphone 4 2010年6月7日 ios 4 ios 7,但是很勉強 iphone 4s 2011年10月4日 ios 5 ios 9,不支援ios 10 2011年6月發布了ios5,10月發布正式版 iphone 5 2012年9月20...
adb檢視手機裝置型號 品牌 機型等資訊
adb檢視手機裝置型號 品牌 機型等資訊 以下操作均基於adb模式。1 檢視機型時,可以使用以下命令 adb shell getprop ro.product.model 2 如果我們忘記具體系統屬性的名字,我們可以使用grep進行過濾,比如 adb shell getprop grep produ...