gpt4 book ai didi

ios - 检索图像到我的 UIImageView

转载 作者:行者123 更新时间:2023-11-30 13:02:10 24 4
gpt4 key购买 nike

我使用我的 Android 应用程序 Parse 在数据库中加载图像,并且我想在我的 iPhone 上显示它。

当我运行 Xcode 时告诉我:“无法将‘NSConcreteData’类型的值释放到‘PFFile’”

有什么方法可以获取此图像并在我的 iPhone (UIImageView) 上显示?

有什么想法可以帮助我吗?

我将非常感激!!

enter image description here

最佳答案

问题是,正如编译器告诉您的那样,您正在尝试将 NSData 转换为 PFFile。

只需使用:

    let userImageProfilePicture = event["profile_picture"]
userImageProfilePicture.getDataInBackgroundWithBlock({ (data, error) -> Void in

// handle here with your userAuth == true block

if let data = data where error == nil{
var image = UIImage(data: data)
}
})

关于ios - 检索图像到我的 UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39801104/

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