I would like to know if someone knows how to make sophisticated animations with CALayer class. In the watchkit documentation is the api for making an image sequence animation.
Asked
Active
Viewed 1,522 times
3 Answers
5
I only have found how to make simple sequence animation. Add the sequence of image to your project:
And add the following snippet of code to setup the image control:
[self.imgSpriteAnimation setImageNamed:@"dragon-"]; [self.imgSpriteAnimation startAnimatingWithImagesInRange:NSMakeRange(0, 60) duration:1.0 repeatCount:0];
In the following post is explained in more detail how to do it.

Javier Calatrava Llavería
- 9,493
- 4
- 53
- 47
0
Image sequence animations are the only animations available to third party developers in WatchKit at the present time.

Duncan Babbage
- 19,972
- 4
- 56
- 93
0
This isn't exactly what you are looking for, but it may help. In is SO answer I show how to create dynamic image animations. Is it possible to position views on top of each other

Community
- 1
- 1

Stephen Johnson
- 5,293
- 1
- 23
- 37