如何获得sdk版本等iphone系统信息? 我需要的信息类似于你的iphone / itouch连接到iTunes时看到的设备信息。 我可以使用UniqueDevice来获取序列号,但似乎无法找到任何系统属性或请求方法。 期待您对此的看法。 贝
答案 0 :(得分:3)
查看UIDevice类 - 这几乎就是你从SDK中获得的所有内容。
答案 1 :(得分:0)
我认为SDK是指系统版本...所以检查 UIDevice systemVersion
答案 2 :(得分:0)
感谢您的回答。我一定是瞎了,他们一直在我的眼前。 这是我用来获取我需要的数据的代码。
serial_no = [[UIDevice currentDevice] uniqueIdentifier]; version = [[UIDevice currentDevice] systemVersion]; system = [[UIDevice currentDevice] systemName];