I've tried passing in the Facebook object which I named facebook as an argument into classes that rely on it. However, is there a way to use it in a sort of global way so that way I don't have to keep on passing it around between objects?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Well, I see several ways:
|
||||
|
|
|
Your best bet would be to use the singleton pattern. http://en.wikipedia.org/wiki/Singleton_pattern Create a new class that has the facebook object as an instance variable and set the new class as the facebook delegate. You can then get the sharedInstance from any class and it will return the same object. This may not actually be the correct solution to your problem. It may require you to add another layer of communication between the singleton and the particular view controller you are using. If you are only performing simple functions then this may be fine. |
|||
|
|
