while i am trying to send a photo with iOS 5 twitter API, i have two cases.
if i write "[twitter addImage]" line before "[twitter addURL]" line, everything is ok. But, if i change the location of lines, photo doesn't go.
what is the problem?
code block is;
if ([TWTweetComposeViewController canSendTweet])
{
TWTweetComposeViewController *twitter = [[TWTweetComposeViewController alloc] init];
[twitter setInitialText:@"something here" ];
//Using a picture from the web
[twitter addImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL
URLWithString:@"http://image url"]]]];
[twitter addURL:[NSURL URLWithString:@"http://my other url"]];
[self presentModalViewController:twitter animated:YES];
[twitter setCompletionHandler:^(TWTweetComposeViewControllerResult result)
{
[self dismissModalViewControllerAnimated:YES];
}];
}