Guy
Guy

Reputation: 361

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

Upvotes: 7

Views: 1073

Answers (1)

Michael Royzen
Michael Royzen

Reputation: 463

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

-Michael

Upvotes: 13

Related Questions