I'm developing an app for apple watch. I'm having troubles to "clear" screen when the app goes sleep or to didDeactivate.
Inside didDeactivate, I clear all labels and Images, but when the app starts again, this labels and Images remains during 1sec.
How I handle it?
- (void)didDeactivate {
label = @" ";
[image setImage:[UIImage imageNamed:@"default"]];
}
(of course, didDeactivate is executed)
I recommend to clean your UI in
willActivate()
. You can't change UI indidDeactivate()
.Reference.