如何在 Apple WatchKit 中为循环进度设置动画?

Posted

技术标签:

【中文标题】如何在 Apple WatchKit 中为循环进度设置动画?【英文标题】:How to animate circular progress in Apple WatchKit? 【发布时间】:2015-05-04 20:15:31 【问题描述】:

我有 50 个圆形图像(progress-1.png、progress-2.png 等)代表一个圆圈的进度。如果我想出一个百分比值,如何为组的背景图像设置动画以显示该百分比值的进度?

【问题讨论】:

这个 GitHub 项目可能会有所帮助:A progress view to be used within Apple Watch projects (github.com/e-sites/ESArcProgressView) 【参考方案1】:

你可以这样使用:

// Using a fixed percentage for this example
CGFloat percentage = 0.5f;
NSUInteger totalImages = 50;
NSUInteger imageCount = (totalImages * percentage);

[self.interfaceImage setImageNamed:@"progress-"];
[self.interfaceImage startAnimatingWithImagesInRange:NSMakeRange(0, imageCount)
                                            duration:1.0
                                         repeatCount:1];

【讨论】:

以上是关于如何在 Apple WatchKit 中为循环进度设置动画?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WatchKit 中为模式界面设置导航标题的色调颜色?

Apple Watch (WatchKit) 推送动作

Apple Watch: WatchKit 应用程序要点

在 Apple Watchkit 中播放声音

Apple Watchkit 的语音识别文本输入?

Apple Watch、WatchKit 和 NSUserDefaults [重复]