startAnimatingWithImagesInRange 未完成
startAnimatingWithImagesInRange is not completing
我需要制作一系列图像的动画。
// Animate Circle
let duration = 1.0
circleGroup.setBackgroundImageNamed("arc")
circleGroup.startAnimatingWithImagesInRange(NSRange(location: 0, length: 100), duration: duration, repeatCount: 0)
我有 101 张图片。从 arc0 到 arc100.
故事板:
正如您在 gif 上看到的,我的问题是动画没有完成完整的循环。有什么建议吗?
看起来动画刚过 40% 就停止了。我打开资产库并将每个文件重命名为完全相同的名称。然后我打开我的 Git 客户端,我看到了这个变化:
动画现在可以使用了。如您所见,问题出在文件名中,其中包含额外的 space。
我还了解到,当做反向动画时location
不是起点而是终点。
我需要制作一系列图像的动画。
// Animate Circle
let duration = 1.0
circleGroup.setBackgroundImageNamed("arc")
circleGroup.startAnimatingWithImagesInRange(NSRange(location: 0, length: 100), duration: duration, repeatCount: 0)
我有 101 张图片。从 arc0 到 arc100.
故事板:
正如您在 gif 上看到的,我的问题是动画没有完成完整的循环。有什么建议吗?
看起来动画刚过 40% 就停止了。我打开资产库并将每个文件重命名为完全相同的名称。然后我打开我的 Git 客户端,我看到了这个变化:
动画现在可以使用了。如您所见,问题出在文件名中,其中包含额外的 space。
我还了解到,当做反向动画时location
不是起点而是终点。