I'm working on an iOS app compatible with iOS5 and iOS6 (iPhone only application)
I develop using XCODE 4.5 (4G182)
the app need to post Tweets on Twitter
for the ios6 implementation I'm using with success the UIActivityViewController class
for the ios5 implementation I'm using the TWTweetComposeViewController from the Twitter.framework, I'm using the following code (already used and working in previous applications I developed with previous XCODE versions)
TWTweetComposeViewController *tweetSheet = [[TWTweetComposeViewController alloc] init]; tweetSheet.completionHandler = ^(TWTweetComposeViewControllerResult result) { [self dismissModalViewControllerAnimated:YES]; }; NSString *textToShare = @"Tweet Example"; [tweetSheet setInitialText:textToShare]; [self presentModalViewController:tweetSheet animated:YES];
this code present the standard Twitter panel, but after I press the send button I receive an alert with the following message:
Cannot Send Tweet
The tweet, "Tweet Example" cannot be sent because the connection to Twitter failed.
[Cancel] [Try Again]
I tried to compile also the Apple Sample application "Tweetie" and I get the same result on ios5 iPhones, I tested it on a first generation iPad (ios5.1) and it seems to work fine
does somebody has the same problem? do you have an suggestions about it?
thank you