Here is the entire delegate, but whenever I run the app I get a breakpoint at [PFFacebookUtils initializeFacebook];
:
#import \"AppDelegate.h\"
#impo
You should call initializeFacebook only after setting the appId and clientKey.
Try this:
[Parse setApplicationId:@"ycWShHVTsY7Xawt0dupTN1YMWFeyMLlhG7K9R0rZ"
clientKey:@"8AmzExUoqvmppa5k3eaS37RBNB6c1StmlysvvjBr"];
[PFAnalytics trackAppOpenedWithLaunchOptions:launchOptions];
[PFFacebookUtils initializeFacebook];
Instead of this:
[PFFacebookUtils initializeFacebook];
{[Parse setApplicationId:@"ycWShHVTsY7Xawt0dupTN1YMWFeyMLlhG7K9R0rZ"
clientKey:@"8AmzExUoqvmppa5k3eaS37RBNB6c1StmlysvvjBr"];}
{[PFAnalytics trackAppOpenedWithLaunchOptions:launchOptions];}
btw, I'd recommend creating another app in parse, now that you posted here these two keys are public and anyone can mess up with your data.