Im implementing a TWTRLoginButton but for some reason the completion block isnt registering/getting called, I have no idea why this is....
Login button initialization:
self.twitterLoginView = TWTRLogInButton(logInCompletion: { session, error in
        if (session != nil) {
            print("signed in as \(session.userName)");
        } else {
            print("error: \(error.localizedDescription)");
        }
    })
Error, when clicking buton:
TWTRLogInButton was created with no completionBlock set
 
                        
Take one UIButton either in Code or in Story board then give the button action to the following method.