提问人:BROWN TOM 提问时间:9/4/2023 更新时间:9/4/2023 访问量:27
如何将 NSbutton 的图像设置为序列帧动画
How to set NSbutton's image to sequence frame animation
问:
这是我第一次自己开发Mac应用程序。我想设置一个按钮,点击后,按钮的图像会以序列帧动画的形式显示。我通过Storyboard设置了“图片按钮”,因为我刚开始学习swift,不知道怎么解决。当我在写一个iso应用程序时,下面的代码可以成功使用,但是NSbutton不包含UIimage属性,所以我不知道如何解决,谢谢大家!
UIbutton 代码:
@IBAction func randomBTN(_ sender: UIButton) {
let button: UIButton = sender.self
var images = [UIImage]( )
for i in ...140 {
images.append(UIImage(named:"\( i )")!)
}
button.imageView!.animationImages = images
button.imageView!.animationDuration =2
button.imageView!.animationRepeatCount = 0
button.imageView!.startAnimating()}
答: 暂无答案
评论