-1

I want to add logout from twitter. i am also logged out but when am trying to login again then this is not opening from twitter login page and showing old user id and username.i used this code to logout.

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *user_ID=[defaults objectForKey:@"USER_ID"];
[[[Twitter sharedInstance] sessionStore] logOutUserID:user_ID];
vikingosegundo
  • 52,040
  • 14
  • 137
  • 178

1 Answers1

0

Do like this,this code is from Twitter Docs.

TWTRSessionStore *store = [[Twitter sharedInstance] sessionStore];
NSString *userID = store.session.userID;
[store logOutUserID:userID];
vikingosegundo
  • 52,040
  • 14
  • 137
  • 178
Narendra Pandey
  • 377
  • 9
  • 28