iOS 之獲取APP與手機 資訊

2021-09-24 07:02:19 字數 994 閱讀 6924

nsdictionary *infodictionary = [[nsbundle mainbundle] infodictionary];

cfshow(cfbridgingretain(infodictionary));//

// version版本

// build版本

//手機序列號

nsuuid* identifiernumber = [[uidevice currentdevice] identifierforvendor];

nslog(@"手機序列號: %@",identifiernumber);

//手機別名:使用者定義的名稱

nsstring* userphonename = [[uidevice currentdevice] name];

nslog(@"手機別名: %@", userphonename);

//系統名稱

nsstring* devicename = [[uidevice currentdevice] systemname];

nslog(@"系統名稱: %@",devicename );

//手機系統版本

nsstring* phoneversion = [[uidevice currentdevice] systemversion];

nslog(@"手機系統版本: %@", phoneversion);

//手機型號

nsstring* phonemodel = [[uidevice currentdevice] model];

nslog(@"手機型號: %@",phonemodel );

//地方型號(國際化區域名稱)

nsstring* localphonemodel = [[uidevice currentdevice] localizedmodel];

nslog(@"國際化區域名稱: %@",localphonemodel );

複製**

iOS之獲取手機的系統資訊

uidevice提供了多種屬性 類函式及狀態通知,可以幫助我們全方位了解裝置狀況。從檢測電池電量到定位裝置與臨近感應,uidevice所做的工作就是為應用程式提供使用者及裝置的一些資訊。uidevice類還能夠收集關於裝置的各種具體細節,例如機型及ios版本等。其中大部分屬性都對開發工作具有積極的輔...

ios開發 獲取手機相關資訊

今天在做客戶端的時候,裡面有個意見反饋功能。呼叫系統帶的郵件功能,傳送郵件到指定郵箱。於是,學習了相關的知識,在這裡與大家分享。在次之前,補充個內容。uidevice是無法獲得具體的裝置型號的。要獲得裝置型號,比如 iphone 4s,iphone5 這樣的,要通過這樣的辦法。1.引入標頭檔案。in...

ios開發 獲取手機相關資訊

今天在做客戶端的時候,裡面有個意見反饋功能。呼叫系統帶的郵件功能,傳送郵件到指定郵箱。於是,學習了相關的知識,在這裡與大家分享。在次之前,補充個內容。uidevice是無法獲得具體的裝置型號的。要獲得裝置型號,比如 iphone 4s,iphone5 這樣的,要通過這樣的辦法。1.引入標頭檔案。in...