startAnimatingWithImagesInRange 反转

startAnimatingWithImagesInRange reverse

我正在开发 Apple Watch 应用程序。在应用程序中,我有带动画的进度条。我正在使用

  - (void)startAnimatingWithImagesInRange:(NSRange)imageRange
                                 duration:(NSTimeInterval)duration
                              repeatCount:(NSInteger)repeatCount 

这对于增加进度(如 0 到 50)来说很好。我想知道有什么方法可以将其反转,如 50 到 0。我已经尝试使用负 NSRange 长度值,但没有成功。

谢谢

WKInterfaceImage (https://developer.apple.com/library/prerelease/ios/documentation/WatchKit/Reference/WKInterfaceImage_class/#//apple_ref/occ/instm/WKInterfaceImage/startAnimatingWithImagesInRange:duration:repeatCount:) 的文档中所述,您所要做的就是向 duration 提供一个负值。