Answers:
从UIDevice
班级:
举个例子: [[UIDevice currentDevice] name];
UIDevice是提供有关iPhone或iPod Touch设备的信息的类。
UIDevice提供的某些信息是静态的,例如设备名称或系统版本。
来源:http : //servin.com/iphone/uidevice/iPhone-UIDevice.html
官方文档: Apple开发人员文档> UIDevice
类参考
记得: import UIKit
迅速:
UIDevice.currentDevice().name
斯威夫特3、4、5:
UIDevice.current.name
这是UIDevice的类结构
+ (UIDevice *)currentDevice;
@property(nonatomic,readonly,strong) NSString *name; // e.g. "My iPhone"
@property(nonatomic,readonly,strong) NSString *model; // e.g. @"iPhone", @"iPod touch"
@property(nonatomic,readonly,strong) NSString *localizedModel; // localized version of model
@property(nonatomic,readonly,strong) NSString *systemName; // e.g. @"iOS"
@property(nonatomic,readonly,strong) NSString *systemVersion;
对于xamarin用户,请使用此
UIKit.UIDevice.CurrentDevice.Name
对于Swift 4+版本,请使用以下代码:
UIDevice.current.name