如何获得Apple Watch硬件标识符?

这个页面http://theiphonewiki.com/wiki/Models似乎build议新的苹果手表的标识符是“Watch 1,1”和“Watch 1,2”

有谁知道如何获得这个标识符在一个连接手表的代码? [WKInterfaceDevice currentDevice]似乎只给我屏幕界限。

没有WatchKit方法来获取硬件标识符。 为了区分38mm和42mm手表,开发者论坛的苹果员工build议在WKInterfaceDevice上使用screenBounds属性。 像这样的东西:

 if ([WKInterfaceDevice currentDevice].screenBounds.size.width == 136.0f) { // 38mm } else { // 42mm }