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