UIButton inside UIImagePickerController.cameraOverlayView not responding
I have got a UIButton inside a UIView that I set as the cameraOverlayView. I also scaled the uiimagepicker cameraView to cover the whole screen (as you can see below in the picture). Here's my code : // CameraViewController.m - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. if(!self.imagePickerController) [self setupCamera]; } -(void)setupCamera{ self.imagePickerController = [[UIImagePickerController alloc] init]; self.imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext; self.imagePickerController.delegate = self; self