Does anyone know where to find the framework ParseFacebookUtils/PFFacebookUtils.h in the new version of the SDK in CocoaPods? Bolts are installed automatically but no ParseFacebookUtils
Thanks!
Does anyone know where to find the framework ParseFacebookUtils/PFFacebookUtils.h in the new version of the SDK in CocoaPods? Bolts are installed automatically but no ParseFacebookUtils
Thanks!
My Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'
pod 'Facebook-iOS-SDK', '3.20.0'
pod 'Parse', '1.5.0'
pod 'ParseFacebookUtils', '1.5.0.1'
My [Xcode's project name]-Bridging-Header:
// Use this file to import your target's public headers that you would like to expose to Swift.
#import <FacebookSDK/FacebookSDK.h>
#import <Parse/Parse.h>
#import <ParseFacebookUtils/PFFacebookUtils.h>
Works like a charm using Xcode 6.1
An official podspec has been released for Parse, and the older one should be deprecated.
So now there's a ParseFacebookUtils
pod as well.
https://github.com/CocoaPods/Specs/blob/master/Specs/Parse-iOS/1.2.21/Parse-iOS.podspec.json https://github.com/hlung/podspec/issues/1
Go to Project > Select the project in Targets > Find by Other Linker Flags and add the ${inherited}
flag like print above.
Just compile and well done!
The official pod is
Parse
notParse-iOS
, actually the iOS was just deprecated a couple of days ago, to get things working just addParseFacebookUtils
to your pods file and update.So this means your pods file should look like
save and update.