I'm having a issue.
I followed the Facebook and Parse tutorials to implement login in swift, I have a error in this line, in my Appdelegate.swift :
PFFacebookUtils.initializeFacebookWithApplicationLaunchOptions(launchOptions)
Use of unresolved identifier 'PFFacebookUtils'
I have a working bridging-header, if I declare:
#import <ParseFacebookUtilsV4/PFFacebookUtils.h>
I'm still have the problem, but if I declare directly in my Appdelegate.swift:
import ParseFacebookUtilsV4
It solve the problem, I found the following post Here
But this not solved my error.