gpt4 book ai didi

ios - PFFile 到 PFImageView

转载 作者:搜寻专家 更新时间:2023-10-31 21:49:37 25 4
gpt4 key购买 nike

我无法在我的 iOS 应用程序中显示我从 Parse 获取的图像。我决定使用 PFImageView。这是我目前所拥有的:

我声明了 PFImageView 图片:

@IBOutlet var pic: PFImageView!

在查询中:

self.name.text = object["Name"] as String

var imagefile = object["image"] as PFFile
self.pic.file = imagefile
self.pic.loadInBackground()

self.desc.text = object["Description"] as String

这真的很奇怪,因为其他人正在工作(名称和描述)而且我确定我的数据库中有一个名为“图像”的字段(是的,小我)。我总是收到此错误: fatal error :在展开可选值时意外发现 nil。

对此有什么见解吗?

最佳答案

检查文件是否为nil

if object.objectForKey("image") != nil
{
var imagefile = object["image"] as PFFile
self.pic.file = imagefile
self.pic.loadInBackground()
}

关于ios - PFFile 到 PFImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25516636/

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