WatchKit 检测标签/组上的点击/触摸
WatchKit detect tap / touch on label / group
我有一个嵌套的 WKInterfaceGroup
,里面有一个 WKInterfaceLabel
:
看起来像这样:
the orange highlight indicates which part of the value the user is currently editing. (Backgroundcolor of WKInterfaceGroup)
我正在尝试找到一种方法来在 left/right 突出显示和 运行 之间切换到问题
- WatchKit 没有为我提供类似
touchesBegan
的东西
- WKInterfaceLabels 没有动作选择器
- WKInterfaceGroups 没有动作选择器
- 没有公开的 ForceTouch API
我的问题是:
how can i let the user `tap' to select which of the two groups he wants to actively edit?
您可以改用 WKInterfaceButton。按钮允许您为其内容使用组而不是标签。然后,hook到按钮的action方法中。
我有一个嵌套的 WKInterfaceGroup
,里面有一个 WKInterfaceLabel
:
看起来像这样:
the orange highlight indicates which part of the value the user is currently editing. (Backgroundcolor of WKInterfaceGroup)
我正在尝试找到一种方法来在 left/right 突出显示和 运行 之间切换到问题
- WatchKit 没有为我提供类似
touchesBegan
的东西
- WKInterfaceLabels 没有动作选择器
- WKInterfaceGroups 没有动作选择器
- 没有公开的 ForceTouch API
我的问题是:
how can i let the user `tap' to select which of the two groups he wants to actively edit?
您可以改用 WKInterfaceButton。按钮允许您为其内容使用组而不是标签。然后,hook到按钮的action方法中。