I had an animation in WKInterfaceImage inside WKInterfaceTable :
[[self.table setNumberOfRows:1 withRowType:@"Loading"]; WatchLoadingCell *cell = [self.table rowControllerAtIndex:0]; [cell.image setImageNamed:@"spin"]; [cell.image startAnimating];
My images named spin0 are spin30 and are added to the target of the watchKit application.
when the application starts, the image is static, i.e. only spin0 is displayed
any ideas why?
EDIT: it works in the simulator, but not on the device itself, it only works on the device when I reload the view by calling [self awakeWithContext:nil]; from my Force Touch menu
I also tried running the animation in willActivate with no luck
source share