将图像检索到我的UIImageView

时间:2016-09-30 22:44:29

标签: ios swift parse-platform uiimageview

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

当我运行Xcode时告诉我:'无法释放类型'的值NSConcreteData' to' PFFile'

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

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

我会非常感激!!

enter image description here

1 个答案:

答案 0 :(得分:0)

问题是,正如编译器告诉你的那样,你正在尝试将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)
          }
    })