gpt4 book ai didi

ios - 类型 'UIImageView' 的值没有成员 'setImageWith'

转载 作者:行者123 更新时间:2023-11-30 11:54:50 24 4
gpt4 key购买 nike

我的代码无法编译,setImageWith 请求图像在后台加载,或者异步加载。但我遇到了这个编译错误。 “UIImageView”类型的值没有成员“setImageWith”

manager.get("https://api.flickr.com/services/rest/",
parameters: searchParameters,
progress: nil,
success: { (operation: URLSessionDataTask, responseObject:Any?) in
if let responseObject = responseObject as? [String: AnyObject] {
print("Response: " + (responseObject as AnyObject).description)
if let photos = responseObject["photos"] as? [String: AnyObject] {
if let photoArray = photos["photo"] as? [[String: AnyObject]]{
self.scrollView.contentSize = CGSize(width: 320, height: 320 * CGFloat(photoArray.count))
for (i,photoDictionary) in photoArray.enumerated() { //1
if let imageURLString = photoDictionary["url_m"] as? String { //2
let imageView = UIImageView(frame: CGRect(x:0, y:320*CGFloat(i), width:320, height:320)) //#1
if let url = URL(string: imageURLString) {
imageView.setImageWith(url) //#2
self.scrollView.addSubview(imageView)
//6
}
}
}
}
}
}


})

最佳答案

这个错误是不言自明的。 UIImageView 类没有方法 setImageWith(_:)

你说“...setImageWith 请求图像在后台加载,或者异步加载。”是什么让您认为存在这种方法?

它是您尝试使用的 UIImageView 第三方扩展的一部分吗?您是否基于其他人的代码?

关于ios - 类型 'UIImageView' 的值没有成员 'setImageWith',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47934325/

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