gpt4 book ai didi

ios - 来自 URL 的 UIImage 图像未被设置

转载 作者:行者123 更新时间:2023-11-29 01:28:57 25 4
gpt4 key购买 nike

我目前有一个 UICollectionView嵌入 UICollectionViewCell , 内嵌标签 embbedViewController工作正常,但 UIImageView 有问题.出于某种奇怪的原因,我无法使用 AlamofireImage 或 Haneke 从 URL 设置图像,但是当从 Image.xcassetts 中的 UIImage 设置图像时可以正常工作。 .谁能阐明为什么会发生这种情况?

embedCollectionView

func collectionView(collectionView: UICollectionView,
cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell
{
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("trendCell", forIndexPath: indexPath) as! customCollectionViewCell

let imgUrl = NSURL(fileURLWithPath: mainViewArrayContainer.artImg[indexPath.row])
cell.secondCollectionViewImage.hnk_setImageFromURL(imgUrl)
cell.secondCollectionViewLabel.text = mainViewArrayContainer.artImg[indexPath.row]
return cell
}

父 View Controller

  func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
if (indexPath.row == 3){
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("trendingCell", forIndexPath: indexPath)
as! customCollectionViewCell

let controller:EmbbedCollectionViewController =
self.storyboard!.instantiateViewControllerWithIdentifier("embbedCollectionView") as! EmbbedCollectionViewController
addChildViewController(controller)
cell.addSubview(controller.view)
return cell
}
else{
//removed to save space

}

最佳答案

For some strange reason I'm unable to set images from URL using AlamofireImage or Haneke

不能通过下载直接设置图片。您必须现在 归还单元格。下载需要时间。您必须异步下载并稍后返回并设置图像。

关于ios - 来自 URL 的 UIImage 图像未被设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33685532/

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