我正在实施KolodaView:https://github.com/Yalantis/Koloda。 viewForCardAt
函数返回UIView
,我的UIView
将有一张需要下载的图片。问题是函数本身期望返回类型为UIView
,但我无法知道setupCard
方法的完成块何时执行完毕,因此我可能最终返回一个空FlatCard
1}}而不是在完成块中获得的FlatCard
。我尝试将return a
添加到完成块,但这是不允许的。如何更改下面的代码以保证只有在执行完成块后才返回卡。
func koloda(_ koloda: KolodaView, viewForCardAt index: Int) -> UIView {
var a = FlatCard()
if let listings = all_listings {
if index < listings.count {
setupCard(index: index, listings: listings, { (complete, card) in
if (complete) {
a = card
}
})
return a
}
}
return a
}
func setupCard(index: Int, listings : [Listing], _ completionHandler: @escaping (_ complete: Bool, _ card : FlatCard) -> ()) -> (){
let curr_card = FlatCard()
if let main_photo_url = listings[index].pic1url {
URLSession.shared.dataTask(with: main_photo_url, completionHandler: { (data, response, error) in
if (error != nil) {
print(error)
return
}
DispatchQueue.main.async {
curr_card.mainFlatImage = UIImage(data: data!)
}
})
completionHandler(true,curr_card)
return
} else {
completionHandler(true,curr_card)
return
}
}
答案 0 :(得分:1)
在准备好之前你不能退货。
就个人而言,我会更新FlatCard,以便它可以下载图像本身并在完成后更新它自己的视图。
的内容
class FlatView: UIView {
var imageURL: URL? {
didSet {
if let imageURL = newValue {
// download image, if success set the image on the imageView
}
}
}
}
然后你需要在你的其他功能中做的就是......
func koloda(_ koloda: KolodaView, viewForCardAt index: Int) -> UIView {
var a = FlatCard()
if let listings = all_listings {
if index < listings.count {
a.imageURL = listings[index].pic1url
}
}
return a
}