Using the AVCam sample, I don't see how I can get access tot he image in the AVCamViewController.m file. I want to preview the captured image, but I don't see how I can access this image in the method: - (IBAction)captureStillImage:(id)sender
after the line: [[self captureManager] captureStillImage];
I want add a preview programmatically like so:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320/5, 480/5)];
[imageView setImage:[captureManager image]];
[self.view addSubview:imageView];
[imageView release];
I have tried to find help here on this, but have not been able to. Does any one here have some hints?