I am using this to logout from Twitter -
TWTRSessionStore *store = [[Twitter sharedInstance] sessionStore];
NSString *userID = store.session.userID;
[store logOutUserID:userID];
But while login again I am getting the same access token and secret. The thing is from our server side we came to know that user token is expired so we made user to login again but we are getting same access token every time. How to get a new access token? - I am using my own button with a handler.
And I am using this to login.
- (void)logInWithCompletion:(TWTRLogInCompletion)completion;