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.
The singleton is a design pattern to ensure that exactly one application-wide instance of a particular class exists.
2
votes
1answer
253 views
Facebook session singleton usage
I'm working on Facebookintegration for my Android app and to reduce the hassle, I'm trying to create a singleton class to seperate the facebook logic from the main logic of my application.
I'd like ...
0
votes
3answers
99 views
Facebook iOS SDK confusion [closed]
I'm trying to implement Facebook Connect into an iPhone application.
Facebook's documentation tells me I need to import the Framework along with FacebookSDKResources.bundle, Accounts.framework, ...
0
votes
0answers
154 views
Best way to manage callbacks of Facebook requests through singleton and blocks
I'm building a singleton to manage the facebook part (incl. session, sharing, informations) in an IOS app. Something very easy to implement, just by setting your IDs in the Plist and including the ...
0
votes
1answer
102 views
IOS Facebook singleton and get profile picture
I am trying to get a profile picture from a UIViewController.
My Facebook is in a singleton class.
From UIViewController
[[myfacebook shared requestWithGraphPath:@"me/picture" andDelegate:self];
this ...
1
vote
3answers
878 views
Understanding and writing singleton class instead of using delegate class
I'm new in iOS programming and I am very interested in what singleton class is, and why it is used. I found some information but it is vague. In particular I would like to apply it to real example. My ...
0
votes
1answer
159 views
How should I use Facebook object across several viewcontrollers
I have been playing with the Facebook iOS API the past days and I got some questions. If I have two distinct view controllers that both need to use the Facebook object how should I share the object? ...
3
votes
1answer
2k views
Facebook Connect Class with Singleton : Access token issue
I have created a singleton class called "LoginFacebook" which is meant to connect user to Facebook and to perform the different request. The problem is that I get an error about the access_token. Here ...
