receiving error Unknown class PFImageView in Interface Builder file for parse

后端 未结 3 1084
执笔经年
执笔经年 2021-01-21 00:47

I attempted to setup pfimage view storyboards in the following manner:

I dragged a UIImageView and then changed its class identity to PFImageView.

Then I dragged

3条回答
  •  礼貌的吻别
    2021-01-21 01:39

    "Unknown class PFImageView in Interface Builder file"

    Adding the following to applicationDidLaunch in your AppDelegate forces the view class to load so it may be referenced correctly

    //In AppDelegate / applicationDidLaunch add:

    [PFImageView class];

    //Pictures loads perfectly now!!:)

提交回复
热议问题