Here is my doubt !!!
How to run the gif image directly from nsmutablearray which i stored images dynamically by assigning it to Wkinterfaceimage ???
Currently i'm working on the GIf Images assigning to the wkinterfaceimage. I stored set of images in a Mutablearray in run time by converting a gif image. How to assign that array to wkinterfaceimage to show run gif image. i found couple of tutorials in swift tried to implement in OBJ C, Plz let me know ur ideas and code in Objective C
Here is my code
[imageView setImage:[frames objectAtIndex:0]];
[imageView startAnimatingWithImagesInRange:NSMakeRange(0,frames.count) duration:1 repeatCount:0];
using above code showing blank screen on similator, if commented second line showing 0 index image.
Results of Frames rate
2015-04-08 10:21:53.206 WatchkitDemo WatchKit Extension[852:24553] {
DelayTime = "0.1";
UnclampedDelayTime = 0; }
Results of Frames array
2015-04-08 10:21:58.807 WatchkitDemo WatchKit Extension[852:24553] (
"<UIImage: 0x7fe358d2d320>",
"<UIImage: 0x7fe358f05d60>",
"<UIImage: 0x7fe358f08230>",
"<UIImage: 0x7fe358d2fd50>"
)