iOS獲取手機上軟體的一些資訊

2021-07-24 14:27:17 字數 1124 閱讀 9918

//

手機上的版本

nsstring

* version = [[

nsbundle

mainbundle

]objectforinfodictionarykey

:@"cfbundleshortversionstring"];

//手機序列號

nsstring* identifiernumber = [[uidevice currentdevice] uniqueidentifier];

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

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

// 當前應用名稱

// 當前應用軟體版本  比如:1.0.1

// 當前應用版本號碼   int型別

獲取手機一些系統資訊的一些工具類

public class datautil else if page 1 frame null return true 資料獲得後的檢查 資料的error值,是否有資料,有些資料是根據時間值來做分頁的 param context param data param frame param time r...

android的一些常用手機資訊獲取

android中與 功能相關的類是 telephonymanager 此類中定義了很多常量,以下分類說明 獲取以下資訊需要在androidmanifest.xml中指定許可權 一 資料連線狀態 獲取資料連線狀態 int getdatastate 獲取資料活動狀態 int getdataactivit...

android的一些常用手機資訊獲取

android中與 功能相關的類是 telephonymanager 此類中定義了很多常量,以下分類說明 獲取以下資訊需要在androidmanifest.xml中指定許可權 一 資料連線狀態 獲取資料連線狀態 int getdatastate 獲取資料活動狀態 int getdataactivit...