gpt4 book ai didi

swift2 - UITableView 在 XCode 7 Swift 2 中与 NSURLSession 异步加载单元格图像

转载 作者:行者123 更新时间:2023-12-02 12:21:04 24 4
gpt4 key购买 nike

有人可以发布有关如何显示异步加载单元格图像的表格 View 的示例代码吗?

有很多 Stack Overflow 问题和博客文章,其中包含早期版本 Swift 的工作示例代码,但我找不到任何与 Swift 2.0 和 XCode 7 兼容的示例。

最佳答案

pinterest 有一个很棒的库 https://github.com/pinterest/PINRemoteImage

import PINRemoteImage

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let j = MYCELLOBJECT![indexPath.row]
let c = tableView.dequeueReusableCellWithIdentifier(CUSTOMCell.id) as! CUSTOMCell

c.Icon?.pin_setImageFromURL(NSURL(string: j.URLTOIMAGE), placeholderImage: UIImage(), processorKey: "Ball", processor: { (result, cost) -> UIImage! in
return result.image

}, completion: { (result) -> Void in })

return c

}

关于swift2 - UITableView 在 XCode 7 Swift 2 中与 NSURLSession 异步加载单元格图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32725221/

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