RAMAN RANA
RAMAN RANA

Reputation: 1795

How to Logout (Session End) of Facebook using objective c?

I am using FbGraphAPI for Facebook integration.I am facing problem which is How can i logout from facebook using objective c?In C#, there is method Session.Abondon() which is used for forcefully logout likewise is there any method in objective c or any other way to logout from the account? I am using FbGraph not FBConnect.

Please help me to fix this problem?

Upvotes: 0

Views: 911

Answers (1)

saadnib
saadnib

Reputation: 11145

to logout from face book use -

[facebook logout:self];

look in face book class there is a method -

- (void)logout:(id<FBSessionDelegate>)delegate

Upvotes: 1

Related Questions