我正在开发Apple手表应用程序。在应用程序中,我有动画进度条。我正在使用
- (void)startAnimatingWithImagesInRange:(NSRange)imageRange
duration:(NSTimeInterval)duration
repeatCount:(NSInteger)repeatCount
这对于增加0到50的进度很好。我想知道有什么方法可以将这个转换为50到0.我已经尝试过减去NSRange长度值而没有运气。
由于
答案 0 :(得分:5)
正如WKInterfaceImage
(https://developer.apple.com/library/prerelease/ios/documentation/WatchKit/Reference/WKInterfaceImage_class/#//apple_ref/occ/instm/WKInterfaceImage/startAnimatingWithImagesInRange:duration:repeatCount :)的文档中所述,您所要做的就是为duration
提供负值。