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.

i'm trying to implement my own delegate for the class UIImagePickerController

This is the method that call the camera

- (IBAction)acquisisciFoto:(id)sender{
    ImagePickerDelegate *pickerDelegate = [[ImagePickerDelegate alloc] init];
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    [picker setDelegate:pickerDelegate];
    [picker setAllowsEditing:NO];
    picker.sourceType = UIImagePickerControllerSourceTypeCamera;
    [self presentModalViewController:picker animated:YES]; 
}

ImagePickerDelegate.h

#import <Foundation/Foundation.h>
@interface ImagePickerDelegate : NSObject <UIImagePickerControllerDelegate,UINavigationControllerDelegate>
@end

ImagePickerDelegate.m

#import "ImagePickerDelegate.h"

@implementation ImagePickerDelegate

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
    NSLog(@"%@", @"test");
}

- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
    [picker.parentViewController dismissModalViewControllerAnimated: YES];
}

@end

But nothing work and i have this error:

sharedlibrary apply-load-rules all warning: UUID mismatch detected with the loaded library - on disk is: /Developer/Xcode/iOS DeviceSupport/5.0 9A334)/Symbols/Developer/usr/lib/libXcodeDebuggerSupport.dylib (gdb)

PS. with delegate:self work good, but i need to use 2 btn in the same view and they have to fire the camera.

Please help me

share|improve this question
When you say "nothing works", do you mean the camera view does not appear or only that the delegate methods do not get hit after a picture is successfully taken? – Michael Dautermann Oct 30 '11 at 21:42
the camera view does not appear – Claudio Oct 30 '11 at 21:44
or better, appears the shutter and the app crash – Claudio Oct 30 '11 at 21:48
If you set a breakpoint where you create the UIImagePickerController in your acquisisciFoto action, can you actually hit the breakpoint? are you doing your testing on a device or in the simulator? – Michael Dautermann Oct 30 '11 at 21:52
the program reach the breakpoint, I can not test it in the simulator because the debugger returns that there isn't a camera, on the device the app crash – Claudio Oct 30 '11 at 22:02
show 3 more comments

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.