I cannot seem to declare my imageView as PFImageView.
Keeps saying Use of undeclared type 'PFImageView'
One suggestion on the Parse forum says to do this, but not sure how to with swift:
//In AppDelegate / applicationDidLaunch add:
[PFImageView class];
After searching through the parse framework, I don't actually PFImageView in it.
For those of you still having trouble with this, I actually had to redownload the SDK and import an additional framework ParseUI
Then import into bridger:
#import <ParseUI/ParseUI.h>