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

i want the user to select an image out of the iphone when they press on a button (via action: buttonClicked), and i want that image to view on the imageview i have (imageAddPicture is the name of the image view)

I found a lot of information but when i use this code i get following errors:

self, release, picker.sourceType = (sender == buttonClicked),...

can someone help me please? (i'm new to stackoverflow.com but i really need the help, i'll try to help other people to) This is the code i used:

-(IBAction)buttonClicked:(id)sender
{
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    picker.delegate = self;
    picker.allowsImageEditing = YES;
    picker.sourceType = (sender == buttonClicked) ?    UIImagePickerControllerSourceTypeCamera :
    UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    [self presentModalViewController: picker animated:YES];
    [picker release];
}
-(IBAction)selectExitingPicture
{
    if([UIImagePickerController isSourceTypeAvailable:
        UIImagePickerControllerSourceTypePhotoLibrary])
    {
        UIImagePickerController *picker= [[UIImagePickerController alloc]init];
        picker.delegate = self;
        picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        [self presentModalViewController:picker animated:YES];
        [picker release];
    }
}

-(void)imagePickerController:(UIImagePickerController *)picker
      didFinishPickingImage : (UIImage *)image
                 editingInfo:(NSDictionary *)editingInfo
{
    imageAddPicture.image = image;
    [picker dismissModalViewControllerAnimated:YES];
}
-(void)imagePickerControllerDidCancel:(UIImagePickerController *)  picker
{
    [picker dismissModalViewControllerAnimated:YES];
}
share|improve this question
Could you write the full error into your question? – user577537 Oct 24 '12 at 8:52
I found out what was wrong with 2 errors i only have this error left: at the word "release" it gives this 2 errors: -ARC forbids expllicit message send of 'release' -'release' is unavailable: not available in automatic reference counting mode – Axel Lambregts Oct 24 '12 at 9:03
Can you edit your question and write that into it in that case? – user577537 Oct 24 '12 at 9:08
also there is an other error here\ – The Saad Oct 24 '12 at 9:24
picker.sourceType = (sender == buttonClicked) ? UIImagePickerControllerSourceTypeCamera : UIImagePickerControllerSourceTypeSavedPhotosAlbum; buttonClicked should be buttonClicked: – The Saad Oct 24 '12 at 9:24

1 Answer

up vote 0 down vote accepted

You are working your project in Automatic Reference counting. So you don't need to release objects. Simply remove this line. Chil :)

picker.sourceType = (sender == buttonClicked) ?    UIImagePickerControllerSourceTypeCamera :
    UIImagePickerControllerSourceTypeSavedPhotosAlbum;

this line should be

picker.sourceType = (sender == buttonClicked:) ?    UIImagePickerControllerSourceTypeCamera :
    UIImagePickerControllerSourceTypeSavedPhotosAlbum;
share|improve this answer
Hi, thank you very much for your answer. I don't get error messages but when I click the button i go to this error in my xcode screen: return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); (error:SIGABRT) – Axel Lambregts Oct 24 '12 at 9:09
there is a log below. copy the complete error from there and post it here – The Saad Oct 24 '12 at 9:11
[buttonClicked]: unrecognized selector sent to instance 0x71a5460 2012-10-24 11:18:39.896 Mundo Grafia[5693:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[buttonClicked]: unrecognized selector sent to instance 0x71a5460' *** First throw call stack: (0x1c98012 0x10d5e7e 0x1d234bd 0x1c87bbc 0x1c8794e 0x10e9705 0x20920 0x208b8 0xe1671 0xe1bcf 0xe0872 0x5016d 0x50552 0x2e3aa 0x1fcf8 0x1bf3df9 0x1bf3ad0 0x1c0dbf5 0x1c0d962 0x1c3ebb6 0x1c3df44 0x1c3de1b 0x1bf27e3 0x1bf2668 0x1d65c 0x22fd 0x2225) libc++abi.dylib: terminate called throwing an exception – Axel Lambregts Oct 24 '12 at 9:20
you'r not assigning method to button properly. did you attached it through interface or through programming – The Saad Oct 24 '12 at 9:23
if through interface then remove it and attach it again – The Saad Oct 24 '12 at 9:23
show 13 more comments

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.