I have integrated Facebook login in my app and therfore user can login with both my app account and also Facebook and do corresponding actions.
-(IBAction)FacebooklogoutBtnClick:(id)sender
{
FBSDKLoginManager *loginManager = [[FBSDKLoginManager alloc] init];
[loginManager logOut];
}