WKInterfaceImage的setImageData文档说“数据可以是原始图像数据或存档的UIImage对象。......此参数中的数据对象可能包含多个图像,因此可以对图像内容进行动画处理。”
有人可以向我展示如何从多个图像构建NSData对象的代码片段,可以将其加载到WKInterfaceImage对象中吗?
这是我能解释如何做到这一点的最好方法。
UIImage * img1 = [UIImage imageNamed:@"img1.png"];
UIImage * img2 = [UIImage imageNamed:@"img2.png"];
UIImage * img = [UIImage animatedImageWithImages:@[img1, img2] duration:0];
NSData * data = [NSKeyedArchiver archivedDataWithRootObject:img];
[self.wkInterfaceImage setImageData:data];
[self.wkInterfaceImage startAnimating];
但这不起作用!
答案 0 :(得分:2)
不使用setImageData,而只使用setImage并直接传递图像。
self.wkInterfaceImage setImage:img];
此外,您还需要将动画图像的持续时间更改为大于0的值。