Parse for iOS: Errors when trying to run the app Parse for iOS: Errors when trying to run the app ios ios

Parse for iOS: Errors when trying to run the app


This is some sort of bug associated with the Parse iOS 1.1.33 release as multiple people are seeing the same errors- myself included.

There are a couple of workarounds-

If you're not using a library which requires the -ObjC linker flag, you can remove -ObjC from your project:

Build Settings > Other Linker Flags > remove -ObjC

or if you are using a library which requires that flag, you can add the Facebook SDK.

Both options will eliminate the errors. Hopefully they fix this as I have no need for the Facebook SDK in my app.

Follow the discussion here:

https://parse.com/questions/cocoapods-incompatibility


Here's a potentially simpler workaround than downloading, compiling, and installing the FB kit which is kind of large and cumbersome. Note that, of course, you won't be able to use any of the FB type functionality in Parse and you will run into severe issues if you trigger any of the Parse code that is expecting to use these dummy symbols. But, if you stay away from them you'll be OK I think. So...

  1. Create an object in your application called FBMissingSymbols

  2. Delete the .h you won't need it

  3. Put this in the .m :

NSString *FBTokenInformationExpirationDateKey = @"";NSString *FBTokenInformationTokenKey = @"";NSString *FBTokenInformationUserFBIDKey = @"";@interface FBAppCall:NSObject@end@implementation FBAppCall@end@interface FBRequest:NSObject@end@implementation FBRequest@end@interface FBSession:NSObject@end@implementation FBSession@end@interface FBSessionTokenCaching:NSObject@end@implementation FBSessionTokenCaching@end@interface FBSessionTokenCachingStrategy:NSObject@end@implementation FBSessionTokenCachingStrategy@end


You have to delete the old ParseFacebookUtils.framework and keep the new ParseFacebookUtilsV4.framework to get it working.