Quote:
Originally Posted by mohit2305
First you need to
assign Camera as UIImagePicker Source
then delegate method
then calling a function to open shutter
then take picture
|
I'm trying to do basically the same thing as the original post. For some reason, when I call takePicture, I can't get at the picture that was captured.
The following method never seems to get called:
Code:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
printf("Did finish picking with info");
[picker release];
}
Is there something that needs to happen to get this method to be called once the picture is taken? Currently I have the method typed in my code, but that is it. I don't see it being "linked" to anything else.