uidevice ios 需要引入哪个库
2016-02-03 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
UIDevice类是一个单例,其唯一的实例( [UIDevice currentDevice] ) 代表了当前使用的设备。
通过这个实例,可以获得设备的相关信息(包括系统名称,版本号,设备模式等等)。
也可以使用使用该实例来监测设备的特征(比如物理方向)。
NSString *strName = [[UIDevice currentDevice] name]; // Name of the phone as named by user
NSString *strId = [[UIDevice currentDevice] uniqueIdentifier]; // A GUID like string
NSString *strSysName = [[UIDevice currentDevice] systemName]; // "iPhone OS"
NSString *strSysVersion = [[UIDevice currentDevice] systemVersion]; // "2.2.1"
NSString *strModel = [[UIDevice currentDevice] model]; // "iPhone" on both devices
NSString *strLocModel = [[UIDevice currentDevice] localizedModel]; // "iPhone" on both devices
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
通过这个实例,可以获得设备的相关信息(包括系统名称,版本号,设备模式等等)。
也可以使用使用该实例来监测设备的特征(比如物理方向)。
NSString *strName = [[UIDevice currentDevice] name]; // Name of the phone as named by user
NSString *strId = [[UIDevice currentDevice] uniqueIdentifier]; // A GUID like string
NSString *strSysName = [[UIDevice currentDevice] systemName]; // "iPhone OS"
NSString *strSysVersion = [[UIDevice currentDevice] systemVersion]; // "2.2.1"
NSString *strModel = [[UIDevice currentDevice] model]; // "iPhone" on both devices
NSString *strLocModel = [[UIDevice currentDevice] localizedModel]; // "iPhone" on both devices
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询