ios之擷取當前系統版本/UUID標識/名字/型號

來源:互聯網
上載者:User

標籤:ios之擷取當前系統版本

1.識別當前系統版本,由於ios7 的statusBar 是懸空的,所以需要做下適配這樣會避免螢幕下面出現白條,針對不同的版本顯示內容布局不同
<pre name="code" class="objc">        int stateHeight = 0;        if ([UIDevice currentDevice].systemVersion.intValue>=7) {            stateHeight = 20;        }




2. UIDevice 點開這個類裡面還有其他系統資訊可以擷取與上面方法類似但不常用,通過單例來實現 來看看一下屬性
@property(nonatomic,readonly,retain) NSString    *name;              // e.g. "My iPhone"@property(nonatomic,readonly,retain) NSString    *model;             // e.g. @"iPhone", @"iPod touch"@property(nonatomic,readonly,retain) NSString    *localizedModel;    // localized version of model@property(nonatomic,readonly,retain) NSString    *systemName;        // e.g. @"iOS"@property(nonatomic,readonly,retain) NSString    *systemVersion;     // e.g. @"4.0"@property(nonatomic,readonly) UIDeviceOrientation orientation;       // return current device orientation.  this will return UIDeviceOrientationUnknown unless device orientation notifications are being generated.


ios之擷取當前系統版本/UUID標識/名字/型號

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.