i followed the official guide from facebook dev doc for implementing SSO from my iphone app, but all is in the same viewcontroller who hold istance of "Facebook" class. Now consider i want to login in first viewcontroller of one navigationcontroller and then call graph api from the third viewcontroller of the same navigationcontroller. I think i can share the variable from one controller to another, but i wish to know if there is some "classic" ways to accomplish this. Indeed what i wish to accomplish in something like: At the start of app i wish to login and then call graph api (or fql) wherever i need in my app.
Thx
I just did this:
in the YourApp_AppDelegate.h
In the YourApp_AppDelegate.m
Then in your application didFinishLaunchingWithOptions: function:
From your viewController.h (any of them),
And then, in your viewController.m viewDidLoad function:
Now, anytime you want to refer to your Facebook singleton, just refer to it like:
Thats how it looks like on my code :)