我正在开发该应用程序,该应用程序使用https://www.countryflags.io/ API将标志加载到类中。使用Alamofire get请求初始化对象时,我正在加载标志。 问题在于,启动应用程序时出队的前几个TableView单元格没有标记。
But when I scroll back after scrolling down, they load perfectly.
我以为这是发生的,因为请求没有足够快地处理,并且在开始使单元出队之前,第一个标志还没有准备好加载。但是我不知道如何在getFlag()方法中设置一些内容,以帮助我在完成时重新加载TableView数据,或者在所有标志加载完毕后延迟出队。
具有getflag()方法的国家/地区类
import UIKit
import Alamofire
final class Country {
let name: String
let code: String
var flag: UIImage?
var info: String?
init(name: String, code: String, flag: UIImage? = nil, info: String? = nil) {
self.name = name
self.code = code
if flag == nil {
getFlag()
} else {
self.flag = flag
}
self.info = info
}
func getFlag() {
let countryFlagsURL = "https://www.countryflags.io/\(code.lowercased())/shiny/64.png"
Alamofire.request(countryFlagsURL).responseData { response in
if response.result.isSuccess {
if let data = response.data {
self.flag = UIImage(data: data)
}
}
}
}
}
cellForRowAt方法
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let country = countries[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "Country", for: indexPath)
cell.textLabel?.text = country.name
if let flag = country.flag {
cell.imageView?.image = flag
} else {
cell.imageView?.image = .none
}
return cell
}
答案 0 :(得分:0)
init
的{{1}}方法不应启动异步图像检索。相反,您应该让Country
启动异步图像检索。
但是您也不应该只是异步地更新cellForRowAt
(因为该行可能在您的Alamofire请求完成时已被重用)。而且,更微妙的一点是,如果您快速滚动到表格视图的末尾,则要避免积压图像请求,因此您想取消对不再可见的行的待处理请求。有多种方法可以实现所有这三个目标(cell
中的异步图像检索,在将其用于另一行后不要更新单元格,并且如果快速滚动也不要使其积压)
最简单的方法是使用AlamofireImage。然后,处理异步图像请求,取消对重复使用的单元格的请求等所有这些复杂性都将降低为:
cellForRowAt
请注意,如果您要使用默认的表格视图单元格,则建议您在此例程中提供一个占位符图像,如上所示。只需创建一个与您的标志大小相同的空白图像(或其他任何图像)即可。这样可以确保正确放置单元格。
顺便说一句,如果您想以编程方式生成该占位符图像,则可以执行以下操作:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: “Country", for: indexPath)
cell.imageView.af_setImage(withURL: objects[indexPath.row].url, placeholderImage: placeholder)
return cell
}
现在,创建的蓝色占位符缩略图为44×44,但是您可以根据应用程序调整颜色和大小。