1

in my application for watchos 2 when I update data are updated only in the controller which shown. If I update label in willActivate() - text changes with a delay. How can update the WKInterfaceLabel in the not shown controllers use page based? The method WKInterfaceController.reloadRootControllersWithNames is not suitable

1 Answers1

1

It's been a while since I used WatchKit specifically.

But to my understanding the willActivate() method may be too late in the lifecycle for you. Have you tried looking at changing the text in earlier methods such as the init() one?

I took a quick glance at the WatchKit Programming Guide.

Wesley McCloy
  • 355
  • 4
  • 12