Sorry, i will try to be more thorough…
for login, I am using:
[[Twitter sharedInstance] logInWithCompletion:^
(TWTRSession *session, NSError *error) {
if (session) {
<<< show a composer dialog >>>
<<< send the tweet >>>
}
for logout, I am using
[[Twitter sharedInstance] logOut];
I am including
#import <TwitterKit/TwitterKit.h>
Does that help any?
Jerry