I am using Parse on an existing project, and after spending hours I cannot make it compile. I want to use FB with Parse, and I have tried the following.
Pod file
pod 'Parse'
pod 'ParseFacebookUtilsV4'
which adds :
Using Bolts (1.2.0)
Installing FBSDKCoreKit (4.3.0)
Installing FBSDKLoginKit (4.3.0)
Using Parse (1.7.5)
Installing ParseFacebookUtilsV4 (1.7.5)
Importing
#import <Parse/Parse.h>
Error :
@interface PFFacebookUtils : NSObject Duplicate interface definition for class 'PFFacebookUtils'
Even if I add in my import :
#import <ParseFacebookUtilsV4/PFFacebookUtils.h>
The error remains the same.