user3519641
user3519641

Reputation: 41

PFQueryTableViewController error

Does new Parse Sdks supports for PFQueryTableViewController?

Because I keep getting an error of use of undeclared type PFQueryTableViewController. Why so?

class CustomTableViewCell : PFQueryTableViewController

Upvotes: 1

Views: 1748

Answers (1)

Va Visal
Va Visal

Reputation: 874

I can say Parse SDKs is still supporting for PFQueryTableViewController but you encountered this problem because PFQueryTableViewController.h header is not including in Parse.framework file anymore. So what you can do, in Objective-C Bride header file, beside of importing Parse/Parse.h, you should also import ParseUI/ParseUI.h. Then the error will go away.

Upvotes: 15

Related Questions