我试过简单地将一个拖到我的故事板中,但我能找到的只有 UIImageView。在我的 UIImageView 的 IBOutlet 中,我将其更改为 PFImageView,我收到一条错误消息:“使用未声明的类型:'PFImageView'”
PFImageViews 根本不存在于 swift 中吗?
我试过简单地将一个拖到我的故事板中,但我能找到的只有 UIImageView。在我的 UIImageView 的 IBOutlet 中,我将其更改为 PFImageView,我收到一条错误消息:“使用未声明的类型:'PFImageView'”
PFImageViews 根本不存在于 swift 中吗?
您需要确保已安装 Parse SDK。您还需要确保在您使用的类上导入 ParseUI,例如:
import ParseUI
然后,您可以在 Storyboard 上选择一个普通的 ImageView,转到界面构建器上的 Identity Inspector,将其类从 UIImageView 更改为 PFImageView
像往常一样将其作为插座连接到您的代码,但不要作为 UIImageView 连接,而是确保它是 PFImageView,如下所示:
@IBOutlet weak var imgTestImage :PFImageView!
您现在可以访问 PFImageView 属性,例如:
let theImage = yourObject.valueForKey("profileImage") as? PFFile
imgTestImage.file = theImage
imgTestImage.loadInBackground()
希望这可以帮助