PFFacebookUtils is not resolved after upgrading parse cocoapod

905 Views Asked by At

I just updated the pod file on my project to increase parse version from 1.2.19 to 1.5.0, now I'm getting compilation error for PFFacebookUtils class as the following

Use of undeclared identifier 'PFFacebookUtils'

2

There are 2 best solutions below

0
On BEST ANSWER

Parse has made Facebook utility separated from Parse framework. So I had to add cocoa pod for ParseFacebookUtils

pod 'ParseFacebookUtils', '~> 1.5.0.1'

then add the following line to the header:

#import <ParseFacebookUtils/PFFacebookUtils.h>

1
On

One suggestion would be to import ParseFacebookUtils/PFFacebookUtils.h (inside of carrots of course) instead of ParseFacebookUtils/ParseFacebookUtils.h

I know its strange, but it worked for me.