I'm trying to set up a a view that contains a button on top of UIImagePickerControllerView. I've seen it's possible to build an overlayView view setting picker.showsCameraControls = NO;
and adding subview to the Overlay. But I don't want to lose the controllers, just to add a button on top. Is this possible?
Here my code:
if ([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypeCamera])
{
UIImagePickerController *imagePickerCam =
[[UIImagePickerController alloc] init];
imagePickerCam.delegate = self;
imagePickerCam.sourceType =
UIImagePickerControllerSourceTypeCamera;
imagePickerCam.mediaTypes = [NSArray arrayWithObjects:
(NSString *) kUTTypeMovie,
nil];
imagePickerCam.allowsEditing = NO;
UIView *overlayView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
UIButton *Button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[Button setFrame:CGRectMake(200, 480, 80, 80)];
[Button addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside];
[overlayView addSubview:Button];
[imagePickerCam.view addSubview:overlayView];
[overlayView bringSubviewToFront:imagePickerCam.view];
[self presentModalViewController:imagePickerCam
animated:YES];
}
I'm trying this:
[imagePickerCam.view addSubview:overlayView];
[overlayView bringSubviewToFront:imagePickerCam.view];
Of course, it doesn't work. Any idea?
First thing, you should use :
This way, you won't have to manage the order of the subviews, so you can remove the line :
which, by the way, should have been the other way around :
Secondly, your overlay view has a height of 480, an you set you UIButton y offset to 480, so the button is out ouf bounds. Try something like :