Is there a way to access tactile feedback through WatchKit?

I plan to create an Apple Watch app. Is there a way to access tactile feedback through WatchKit?

+6
source share
3 answers

No no. From this post follows https://devforums.apple.com/thread/254540?tstart=15 .

There is currently no access to these hardware features, although there is a presentation of the text input controller through the WKInterfaceController, which will include a microphone. In the past, I do not have information about upcoming releases.

+10
source

Yes, with watchOS 2.0 you can access tactile feedback as follows:

WKInterfaceDevice.currentDevice().play(.success) 
+10
source

Currently, the only way to give tactical feedback is to show a notification.

+3
source

Source: https://habr.com/ru/post/978486/


All Articles