ios獲取版本號等

2021-06-18 04:52:44 字數 1988 閱讀 1383

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);  

關心以下兩個方面:

一、獲得客戶端使用者的硬體版本號

// 判斷裝置的ios 

版本號float

version =[[[

uidevice

currentdevice] 

systemversion] 

floatvalue];

nslog(@"%f",version);

二、我們還可以獲得更多相應的裝置資訊

nslog

(@"%@"

,[[uidevice

currentdevice

]name

]);// name of the phone as named by user

nslog(

@"%@"

,[[uidevice currentdevice] uniqueidentifier]);

// a guidlike string 

nslog(

@"%@"

,[[uidevice currentdevice] identifierforvendor]);

// a guidlike string

(ios6.0)

nslog(

@"%@"

,[[uidevice currentdevice] systemname]);

// "iphoneos"

nslog(

@"%@"

,[[uidevice currentdevice] systemversion]);

//"5.1.1"

nslog

(@"%@"

,[[uidevice

currentdevice

]model

]); // "iphone" on both devices

nslog(

@"%@"

,[[uidevice currentdevice] localizedmodel]);

//"iphone" on both devices

//獲得軟體的版本號,

nsdictionary

* infodict =[[

nsbundle mainbundle] infodictionary];

float softverson =[[infodictobjectforkey:@"cfbundleshortversionstring"]floatvalue];

讀取

info.plist檔案的資訊。

nsdictionary

* infodict =[[

nsbundle

mainbundle

] infodictionary];

//隱藏電池條

IOS APP 獲取版本號等

nsdictionary infodictionary nsbundle mainbundle infodictionary cfshow infodictionary 手機序列號 nsstring identifiernumber uidevice currentdevice uniqueiden...

iOS 獲取app版本號

來嘍來嘍,瞧一瞧看一看,一點小技巧,只用一分鐘,看不到吃虧,看不到上當 hoho 那我們就來展示一下這個plist檔案的內容吧。只有一段 和兩張,仔細看哦 nslog dics nsbundle mainbundle infodictionary 獲取plist檔案內容 nslog nsbundle...

iOS 獲取appstore 版本號

專案上線以後一般都涉及到公升級,那麼ios 如何從appstore獲取到版本號 其實很簡單 nsstring url nsstring alloc initwithformat 其中 最後一串數字就是當前app的唯一id。這個id如何得到,一下 很簡單 然後我們只需要呼叫這個 位址,就會返回當前ap...