本文介绍了我们如何使用Watchkit Touch Events?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的应用中使用触摸事件.我知道不能在watchKit中使用手势识别器.是否可以使用touchesBegan,touchesMove等功能?

I wanna use touch events in my app. I know gesture recognisers can not be used in watchKit. Is it possible to use functions like touchesBegan, touchesMove etc ?

推荐答案

聚会有点晚,但是可以将SceneKit与WatchKit一起使用,SceneKit允许您添加手势处理程序.请在此处查看Apple示例项目:

A little late to the party, but it's possible to use SceneKit with WatchKit and SceneKit allows you to add gesture handlers. Please see the Apple example project here:

https://developer.apple.com/library/content/samplecode/WatchPuzzle/Introduction/Intro.html#//apple_ref/doc/uid/TP40017284-Intro-DontLinkElementID_2

看起来可以将Tap,Swipe,Long Press和Pan手势手柄添加到添加到InterfaceController的任何视图中.

Looks like Tap, Swipe, Long Press and Pan gesture handles can be added to any view added to the InterfaceController.

这篇关于我们如何使用Watchkit Touch Events?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 09:53