Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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];
   }];

}

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.