在CollectionView
中的TableViewCell
项目中,我无法显示并添加了
cell.collectionView.reloadData()
在我的代码中。我添加后,CollectionView
显示TableViewCell
,但是
ScrollView
并不顺利。如何解决这个问题呢。如果有人有任何经验或想法帮助我。谢谢。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "homecell") as! HomeCategoryRowCell
let mainThemeList = mainHomeThemeTable[(indexPath as NSIndexPath).row]
DispatchQueue.main.async {
cell.categoryTitle.text = mainThemeList.main_name
cell.collectionView.reloadData()
}
return cell
}
我的项目中的CollectionView,
extension HomeCategoryRowCell : UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
debugPrint("assetsTable count \(assetsTable.count)")
return assetsTable.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "videoCell", for: indexPath) as! HomeVideoCell
let list = assetsTable[(indexPath as NSIndexPath).row]
let url2 = NSURL(string:list.poster_image_url)
let data2 = NSData(contentsOf:url2! as URL)
// debugPrint(list.poster_image_url)
DispatchQueue.main.async(){
cell.movieTitle.text = list.name
cell.imageView.image = UIImage(data: data2! as Data)
}
return cell
}
}
答案 0 :(得分:2)
在collectionView: UICollectionView, cellForItemAt indexPath: IndexPath
代表 - ASYNCHRONOUSLY
创建一个类
首先根据关键图像URL缓存图像数据
为什么我们需要缓存数据?
因为 - 滚动时我们不需要每次下载图像,因此请缓存已下载的图像数据并返回缓存数据
我创建了一个类名:AsyncImageLoader
然后我创建了一个函数,它是一个完成处理程序,它在完成下载Image后返回数据
class AsyncImageLoader {
static let cache = NSCache<NSString, NSData>()
class func image(for url: URL, completionHandler: @escaping(_ image: UIImage?) -> ()) {
DispatchQueue.global(qos: DispatchQoS.QoSClass.background).async {
if let data = self.cache.object(forKey: url.absoluteString as NSString) {
DispatchQueue.main.async { completionHandler(UIImage(data: data as Data)) }
return
}
guard let data = NSData(contentsOf: url) else {
DispatchQueue.main.async { completionHandler(nil) }
return
}
self.cache.setObject(data, forKey: url.absoluteString as NSString)
DispatchQueue.main.async { completionHandler(UIImage(data: data as Data)) }
}
}
}
如何使用AsyncImageLoader类?
请参阅下文我在collectionView: UICollectionView, cellForItemAt indexPath: IndexPath
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let yourCell = collectionView.dequeueReusableCell(withReuseIdentifier: "CustomCollectionCell", for: indexPath) as! CustomCollectionCell
yourCell.url = URL(string: "\(item_ImageUrl)")
return yourCell
}
CustomCollectionCell
class CustomCollectionCell: UICollectionViewCell {
@IBOutlet weak var cellImageDisplayView: UIImageView!
var url: URL? {
didSet {
if let url = url {
cellImageDisplayView.image = nil
AsyncImageLoader.image(for: url, completionHandler: { (image) in
DispatchQueue.main.async {
if let img = image {
self.cellImageDisplayView.image = img
}else{
let dummyImage = UIImage(named: "img_u")
self.cellImageDisplayView.image = dummyImage
}
}
})
}else{
let dummyImage = UIImage(named: "img_u")
self.cellImageDisplayView.image = dummyImage
}
}
}
}
答案 1 :(得分:0)
cell.layer.shouldRasterize = true
cell.layer.rasterizationScale = UIScreen.main.scale
添加上面的代码后,我的项目变得更加流畅。我会尽力而为,并提供最佳解决方案。感谢
答案 2 :(得分:0)
这是因为您直接从url获取数据,然后从主线程中的数据中获取图像。您应该使用图像下载库从URL下载图像 这是从url异步下载图像的好第三方。
https://github.com/rs/SDWebImage
试试这个我100%肯定会解决你的问题。
由于