在 Watch Simulator 上播放但不在 Apple Watch 上播放的 .gif 图像序列
Image sequence of .gif playing on WatchSimulator but not on AppleWatch
我在 watchOS2 b4.
我有一个名为 animatedImage
的 WKInterfaceImage
连接正确,我正在使用
[self.animatedImage setImageNamed:@"image"];
[self.animatedImage startAnimatingWithImagesInRange:NSMakeRange(0, 65) duration:6.0 repeatCount:0];
为多张图片制作动画。这适用于模拟器,但图像未显示在 AppleWatch 上。
我在我的 Watch-target 中添加了一个包含所有图像的文件夹。他们都被命名为image0.gif image1.gif
等等。
还有其他人遇到过这种情况吗?
当我从 .gif 更改为 .png 时,它起作用了。我想模拟器可以处理 .gif 但 AppleWatch 不能。
我在 watchOS2 b4.
我有一个名为 animatedImage
的 WKInterfaceImage
连接正确,我正在使用
[self.animatedImage setImageNamed:@"image"];
[self.animatedImage startAnimatingWithImagesInRange:NSMakeRange(0, 65) duration:6.0 repeatCount:0];
为多张图片制作动画。这适用于模拟器,但图像未显示在 AppleWatch 上。
我在我的 Watch-target 中添加了一个包含所有图像的文件夹。他们都被命名为image0.gif image1.gif
等等。
还有其他人遇到过这种情况吗?
当我从 .gif 更改为 .png 时,它起作用了。我想模拟器可以处理 .gif 但 AppleWatch 不能。