I’m trying to display a tweet composer for an app card using the code below… When I press “Tweet” the button turns gray and appears to load for a few seconds then just goes back to normal. There are no callbacks, log messages, warnings, etc. Any idea what’s causing this?
I’ve also had countless issues related to a lack of App Transport Security support… maybe they’re related?
UIImage *userImage = ...;
NSString *appID = ...;
TWTRSession *session = [Twitter sharedInstance].sessionStore.session;
TWTRCardConfiguration *card = [TWTRCardConfiguration appCardConfigurationWithPromoImage:userImage iPhoneAppID:appID iPadAppID:nil googlePlayAppID:nil];
TWTRComposerViewController *composer = [[TWTRComposerViewController alloc] initWithUserID:session.userID cardConfiguration:card];
composer.delegate = self;
[self presentViewController:composer animated:YES completion:nil];