我想找到与iOS设备搭配的Apple Watch的watchOS版本。
以下代码适用于iOS设备,但我无法找到查找watchOS版本的方法:
[[UIDevice currentDevice].systemVersion]
而且,对于iOS 9.3和watchOS 2.2,我们将允许与多个手表配对。那么,有什么方法可以编程方式获得所有配对手表的细节吗?
答案 0 :(得分:8)
您可以使用以下代码获取手表套件详情
[[WKInterfaceDevice currentDevice] systemVersion]
答案 1 :(得分:1)
Swift版本。
let watchOSVersion = WKInterfaceDevice.currentDevice().systemVersion
print("WatchOS version: \(watchOSVersion)")