iOS開發獲取手機型號 (裝置硬體型別)

2021-06-29 05:31:47 字數 571 閱讀 4404

3種方法獲取裝置硬體型別(最新到iphone6)

1.這種是在較高層次獲取裝置型別,返回的是 iphone , ipod , ipad 。適合要求不高的。

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

2.這是linux中獲取裝置型別的方法,主要是c語言的方法,注意引入標頭檔案 #include 。輸入底層獲取裝置型別的方法。

- (nsstring *)getdeviceversioninfo

-(nsstring *)correspondversion

3.這是2一樣,是linux中獲取裝置型別的方法,主要是c語言的方法,注意引入標頭檔案 #import "sys/utsname.h" 。輸入底層獲取裝置型別的方法。

#import "sys/utsname.h"

- (nsstring *)getdeviceversioninfo

-(nsstring *)correspondversion

iOS 獲取手機型號,系統版本

新新增判斷iphone 7 iphone 7 plus 我手裡沒有7,判斷不對錶打我 fq找的資料 1.手機系統 iphone os nsstring phoneversion uidevice currentdevice systemversion 2.手機型別 iphone 6 nsstring...

獲取手機裝置型號 系統版本 手機型號等資訊

獲取當前 的基本資訊字典 nsdictionary infodictionary nsbundle mainbundle infodictionary 名稱 nsstring infodictionary objectforkey cfbundledisplayname 版本 nsstring in...

iOS開發 獲取裝置型號資訊

開發中有的時候檢視設計統計資料,或者通過日誌檢視錯誤資訊,這個時候我們就需要獲取獲取裝置資訊,看下關於裝置有幾種方法 1 2 3 4 5 nslog uidevice currentdevice name 裝置名稱 nslog uidevice currentdevice model 裝置型別 ns...