PFQueryTableViewController error

1.7k Views Asked by At

Does new Parse Sdks supports for PFQueryTableViewController?

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

class CustomTableViewCell : PFQueryTableViewController

1

There are 1 best solutions below

1
On BEST ANSWER

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.