Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse.com : installed latest SDK but now App not working

My IOS App. Twoater has been up and running successfully for a couple of months now.

I downloaded the latest SDK and implemented the parse.framework : - deleted old framework from within xCode - dropped new one into xCode - checked parse.framework in Build Phases tab

All looks OK.

When I try to build the code I fails in 2 classes where I have the following statement relating to PFQueryTableViewController. See code


#import "AppDelegate.h"
#import <Parse/Parse.h>
#import <CoreLocation/CoreLocation.h>

@interface TwoatsTVC : PFQueryTableViewController

And get Error :

"Cannot find the interface declaration for 'PFQueryTableViewController' ... did you mean UITableViewController

Any ideas welcome ...

Many thanks, Guy

like image 856
Guy Avatar asked Nov 13 '14 17:11

Guy


Video Answer


1 Answers

Try importing the ParseUI framework that is included with the SDK.

-Michael

like image 82
Michael Royzen Avatar answered Oct 05 '22 19:10

Michael Royzen