How to make User logout from twitter fabric ios

后端 未结 9 1249
慢半拍i
慢半拍i 2020-12-20 16:28

I have made a basic app using Twitter\'s fabric that allows user to tweet within my app and Provide Login With Twitter.Every things works a I Wanted.

9条回答
  •  不思量自难忘°
    2020-12-20 16:44

    Logout Code From Twitter Docs:

    Objective-C

    TWTRSessionStore *store = [[Twitter sharedInstance] sessionStore];
    NSString *userID = store.session.userID;
    
    [store logOutUserID:userID];
    

    Swift

    let store = Twitter.sharedInstance().sessionStore
    
    if let userID = store.session()?.userID {
      store.logOutUserID(userID)
    }
    

提交回复
热议问题