如何确定当前的iPhone/设备模型?
是否有办法在SWIFT中获取设备型号名称(iPhone4S、iPhone 5、iPhone5S等)?
我知道有个财产叫UIDevice.currentDevice().model但它只返回设备类型(iPodtouch、iPhone、iPad、iPhone模拟器等)。
UIDevice.currentDevice().model
我也知道,在目标C中,用这种方法可以很容易地做到这一点:
#import <sys/utsname.h>struct utsname systemInfo;uname(&systemInfo);NSString* deviceModel = [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding];
但是我正在用SWIFT开发我的iPhone应用程序,所以有人能帮我用SWIFT解决这个问题吗?
相关分类