viewDidAppear equivalent on apple watch

Asked

Viewed 69 times

0

I need to present a short animation (a sequence of images) when my App starts. The method willActivate does not help me as it is still not showing anything. There is some notification or something to ensure that you are already showing the scene on the screen?

2 answers

1


The life cycle of WKInterfaceController is still quite limited and only counts on the methods -willActivate and -didDeactivate. So if you need to run something a little bit after the method call -willActivate I see no other way but to use NSTimer to trigger the animation.

1

Browser other questions tagged

You are not signed in. Login or sign up in order to post.