When I try to import the ParseFacebookUtils framework in Swift, it does not work. In the documentation https://parse.com/docs/ios/guide#users-facebook-sdk-and-parse I follow the steps to integrate the FBSDK (once I have Parse up and running, error-free).
The thing is that since the Parse.com iOS SDK was just recently updated (you dont really have to create bridging headers anymore for the Parse SDK Frameworks), and in the link above they tell you to include:
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <ParseFacebookUtilsV4/PFFacebookUtils.h>
in your header file. I tried both to import the ParseFacebookUtils with a regular import in swift, but the compiler complains and says:
(This is my AppDelegate.swift file)
Then I tried my luck and went ahead and import everything normally as in the image above, but then creating a bridging header just to import ParseFacebookUtils, like so:
But it did not work. Even if I comment out the ParseFacebookUtils in swift.
Can you help me solving this issue?
Thank you so much for your help in advance!
Cheers!