I need to use some features for both the new Facebook SDK 3.0 and the deprecated one in the same class like this :
#import <FacebookSDK/FacebookSDK.h>
#import "Facebook.h"
but I got some problems when importing these togethers in same class.
80% of my code are working on the new SDK 3.0 I just use the old one for the post and friend request but I cant use them at same time in the same class.
So is there any way to use them in the same ViewController?
I solve it,,,
Instead of import all the library like this :
I Just import the only I need beside the old Facebook SDK like this :
And its working now 🙂