在Swift中使用WatchKit通过程序设置UIImage动画

问题描述 投票:0回答:1

我似乎无法弄清楚如何以编程方式为UIImage设置动画。

[我已经看过用Objective-C编写的代码,但是正在Swift中寻找解决方案。

我能找到的最接近的代码是:

imageView.startAnimatingWithImages(in: ???[NSRange] , duration: 1, repeatCount: 100)

但是我不确定要在NSRange中放入什么。图像存储在我的资产文件夹中的一个文件夹中:enter image description here

快速输入代码(但不适用于Apple Watch:How to animate images in Swift?

目标C代码:Programatically Set UIImage Animation with WatchKit

swift watchkit apple-watch
1个回答
0
投票

找到了一个快速的解决方案:安静简单,我只需要添加一个图像输出并编写以下两个代码项:

class InterfaceController: WKInterfaceController {
    @IBOutlet weak var imageObject: WKInterfaceImage!

    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
        imageObject.setImageNamed("plank")
        imageObject.startAnimating()
        // Configure interface objects here.
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.