以38mm或42mm的形式找出哪款苹果手表的正确方法是什么?我如何为它创建一个struct对象来访问它,如下所示:
if watch.size == 38 {
} else {
}
答案 0 :(得分:3)
您可以通过以下方式检查Apple Watch尺寸: -
public struct watch {
public static var screenWidth: CGFloat {
return WKInterfaceDevice.current().screenBounds.width
}
public static var is38: Bool {
return screenWidth == 136
}
public static var is42: Bool {
return screenWidth == 156
}
}