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.

I wanna keep my app able to handle facebook login, share ,... on ios 4,5,6 can o do that if i updated my facebook sdk to 3.1 and how ?

share|improve this question

closed as not a real question by Mitch Wheat, Jon Clements, Janak Nirmal, Fahim Parkar, Mehul Dec 17 '12 at 6:51

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

The new Facebook sdk takes care of this issue - if the social framework is available (running on iOS 6.0) then it will use it, otherwise it will fall back to the old facebook login method (switching to the facebook app / safari to obtain a token).

I recommend you follow Facebook's tutorial for solving this issue.

share|improve this answer

I am using the following method for login. It will work on all OS version. If it is iOS6, it will take credentials from Setting app in iOS. Otherwise, it will look for Facebook iPhone app or via safari it will get logged in.

 [FBSession openActiveSessionWithReadPermissions:permissions allowLoginUI:true completionHandler:^(FBSession *session,
                                                 FBSessionState status, 
                                                 NSError *error)  
share|improve this answer

you can follow this online guide to do it.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.