005 獲取App資訊

2022-07-15 04:42:10 字數 790 閱讀 9701

1

//1.取得當前專案的info.plist字典

2 nsdictionary *infodictionary =[nsbundle mainbundle].infodictionary;34

//2.獲得當前軟體的版本號(bundle versions string, short)(諸如:1.0)5//

info.plist中專案版本號的key(版本號在info字典中的key為cfbundleshortversionstring)

6 nsstring *versionkey1 = @"

cfbundleshortversionstring";

7 nsstring *currentversion1 =infodictionary[versionkey1];89

//3.獲得當前軟體的版本號(bundle version)(諸如:1001)

10//

取得當前專案的info.plist字典(版本號在info字典中的key為cfbundleversion)

11 nsstring *versionkey2 = @"

cfbundleversion";

12 nsstring *currentversion2 =infodictionary[versionkey2];

1314 ldlog(@"

currentversion1 = %@ currentversion2 = %@

", currentversion1, currentversion2);

如何獲取app 崩潰資訊

註冊崩潰資訊 方法 應用由系統啟動後的入口 收集崩潰資訊 nssetuncaughtexceptionhandler uncaughtexceptionhandler 崩潰資訊獲取方法實現 1.獲取錯誤資訊 2.設定檔名 3.設定路徑 4.錯誤資訊儲存到檔案 void uncaughtexcepti...

獲取裝置資訊以及APP版本

uidevice device uidevice alloc init nslog 裝置所有者的名稱 device name nslog 裝置的類別 device model nslog 裝置的的本地化版本 device localizedmodel nslog 裝置執行的系統 device sys...

iOS獲得裝置相關資訊,獲取app相關資訊

裝置所有者名稱 device.name 裝置所有者名稱 nslog 裝置類別 device.model 裝置leibie nslog 本地化版本 device.localizedmodel 本地化版本 nslog 當前系統版本 device.systemversion 當期版本 nslog 當前系統...