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.

In Facebook SDK V2 there existed delegate methods to receive information ie when a user logged out the delegate method -(void)fbDidLogout was called. But I cannot find any information about delegate methods in Facebook SDK V3?

share|improve this question

2 Answers

in latest version of facebook sdk,when clicking on the logout button we need to check one condition and it will be like below

-(IBAction)buttonClicked:(id)sender {
    // get the app delegate so that we can access the session property
  AppDelegate *appDelegate = [[UIApplication sharedApplication]delegate];

    if (appDelegate.session.isOpen) {
        [appDelegate.session closeAndClearTokenInformation];

    } 
}

here session is FBSession class object and it is synthesized in Appdelegate.

share|improve this answer
Yes you can do that but that is not what I was asking for. I was asking for a delegate method that let's me know when the user has been "successfully" logged out. – Peter Warbo Sep 28 '12 at 6:15
up vote 0 down vote accepted

From reading the documentation thourougly now I understand there are no more delegate methods in Facebook SDK V3+

Instead you need to inspect the FBSessionState enum in the - (void)sessionStateChanged... method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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