en

hi, it seems you are using microsoft internet explorer. it doesn't match web standard and causes problems browsing this site. please please please use mozilla firefox or google chrome instead. thank you!

zh

哦哦!您正在使用Internet Explorer 瀏覽器,它與我們的網頁標準並不相容,可能會導致畫面顯示不正常。
請改用 Mozilla Firefox 或者 Google Chrome 才能正常瀏覽本網站,謝謝!

5.04.2011

關於 UIDevice 的二三事

 


UIDevice 可以取得許多當前裝置的狀態,例如識別碼、系統版本與裝置名稱等,這類很常見的狀態資訊,而上圖分別是使用實機(左)和使用模擬器(右)所得出的結果,其程式碼如下。

//取得當前狀態
UIDevice *device = [UIDevice currentDevice];

//印出
NSLog(@"\n 唯一識別碼 : %@\n 裝置名稱 : %@\n 系統名稱 : %@\n 系統版本 : %@\n 使用模組 : %@\n 區域模組 : %@",
    [device uniqueIdentifier],
    [device name],
    [device systemName],
    [device systemVersion],
    [device model],
    [device localizedModel]
);






沒有留言:

張貼留言