检测手指触摸Apple Watch上的移动

时间:2015-04-09 12:17:38

标签: ios objective-c swift watchkit ios8.2

我想检测AppleWatch上的触摸以获取触摸位置。我们可以通过使用以下委托方法在iPhone应用程序上实现此行为:

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    //Any Logic
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    //Any Logic
}

所以,我只是在WatchKit上使用这些方法但没有工作; 有没有办法实现这种行为?

我想根据WatchKit上的触摸位置制作一些逻辑。

任何工作方向都将受到赞赏。

1 个答案:

答案 0 :(得分:4)

目前(我不知道将来是否会发生变化),WatchKit没有类似触摸识别器。您只需按下按钮或带选择器的菜单即可做出响应。