I have an iPhone app and added a WatchExtension. Now I managed to send a string to the Watch using the MMWormhole
. In order to use the string I must call update()
inside the WKInterfaceController
from a method inside my UIViewController
, so the iPhone application.
Is that possible?
I tried to do something like InterfaceController.update()
but Xcode complained that it does not know the variable InterfaceController
.
Thanks in advance :)