如何找到 38 毫米或 42 毫米的苹果手表?
How to find which apple watch 38 or 42mm?
以编程方式找出 Apple Watch 是 38 毫米还是 42 毫米的正确方法是什么?我怎样才能为它创建一个结构对象来访问它,如下所示:
if watch.size == 38 {
} else {
}
您可以通过以下方式查看 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
}
}
以编程方式找出 Apple Watch 是 38 毫米还是 42 毫米的正确方法是什么?我怎样才能为它创建一个结构对象来访问它,如下所示:
if watch.size == 38 {
} else {
}
您可以通过以下方式查看 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
}
}