gpt4 book ai didi

ios - 在变量中设置图像时应用程序崩溃

转载 作者:搜寻专家 更新时间:2023-11-01 07:33:34 28 4
gpt4 key购买 nike

我正在尝试将图像存储在变量中,但我的应用程序在下面的给定行上崩溃了:

let theImage = UIImage(named: self.arrImages[indexPath.row])!

这里,arrImages 是一个包含图像的数组。

我遇到的崩溃是

Fatal error: unexpectedly found nil while unwrapping an Optional values

编辑 1根据@Duncan C 和@Valentin 的要求声明:

var arrImages = [String]()

UICollectionView 的委托(delegate)中使用它

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

if collectionView == self.collectionView
{
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as! ImageCell

cell.imageView.image = nil
var theImage = UIImage()
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), {

if let image = UIImage(named: self.arrImages[indexPath.row]) {
// Do whatever you like with the image here
theImage = UIImage(named: self.arrImages[indexPath.row])!
}


dispatch_async(dispatch_get_main_queue(), {

cell.imageView.image = theImage
cell.imageView.contentMode = .ScaleAspectFit

});
})

return cell
}

最佳答案

你没有提供足够的信息,你说的一些话没有意义。

发布 arrImages 的声明,以及将值安装到数组中的代码。

你说你的数组包含图像,但你的代码期望数组包含图像文件名(字符串)。

接下来,您需要将代码分解为多个步骤并对其进行调试:

let index = indexPath.row
let imageName = self.arrImages[index];
println("At index \(index), imageName = \"\(imageName)\"")
let image = UIImage(named: imageName)
println("Image = \(image)")

关于ios - 在变量中设置图像时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31220458/

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