Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to add an image in a tweet. I tried this code, and only the picker shows. When I tap on the image it doesn't grab... Here is the code:

- (IBAction)sendImageTweet:(id)sender {
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    picker.delegate = self;
    picker.allowsEditing = NO;
    [self presentModalViewController:picker animated:YES];
}

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    TWTweetComposeViewController *tweetViewController = [[TWTweetComposeViewController alloc] init];
    UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
    [self dismissModalViewControllerAnimated:YES];
    [tweetViewController addImage:(UIImage *)image];
    [self presentModalViewController:tweetViewController animated:YES];
}

Thanks, and sorry for my English...

share|improve this question

3 Answers

up vote 1 down vote accepted

I think the problem is you are dismissing a viewController and presenting one at the same time. I did this

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[self dismissModalViewControllerAnimated:YES];
UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
[self performSelector: @selector(showTweetwithPhoto:) withObject: image afterDelay: 0.5];

}

and it worked perfectly

-(void) showTweetwithPhoto:(UIImage*)image {
    TWTweetComposeViewController *tweetViewController = [[TWTweetComposeViewController alloc] init];
    [tweetViewController addImage:image];
    [self presentModalViewController:tweetViewController animated:YES];
}
share|improve this answer
Thanks, it work! :) – Davide Di Febbo Jan 27 '12 at 20:15

Try casting the image data (returned by UIImagePickerController) to UIImage object, as shown below. (I have changed 2nd line of your code).

UIImage *image = (UIImage*)[info objectForKey:@"UIImagePickerControllerOriginalImage"];
share|improve this answer
Thanks, it doesn't work... – Davide Di Febbo Jan 27 '12 at 18:32
UIImage * image = (UIImage *) [info valueForKey:UIImagePickerControllerOriginalImage];
share|improve this answer
Thanks... It doesn't work... – Davide Di Febbo Jan 27 '12 at 18:33

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.