gpt4 book ai didi

swift - 在 UIImageView 中显示 Gif 时出错

转载 作者:行者123 更新时间:2023-11-28 09:13:24 26 4
gpt4 key购买 nike

我有这个代码:

var url : NSURL = NSBundle.mainBundle().URLForResource("lambaavent2", withExtension: "gif")!
var testImage = UIImage.animatedImageWithAnimatedGIFData(NSData(contentsOfURL: url))
self.cityImageView.animationImages = testImage.images
self.cityImageView.animationDuration = testImage.duration
self.cityImageView.image = testImage.images.lastObject()
self.cityImageView.startAnimating()

当我启动项目时,出现错误:‘[AnyObject] 没有名为‘lastObject’的成员

我要做什么?

最佳答案

试试这个:

self.cityImageView.image = testImage!.images!.last as? UIImage

关于swift - 在 UIImageView 中显示 Gif 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28508996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com