Hi!
I'm initializing an UIImagePickerController like this:
self.cameraController = [[UIImagePickerController alloc] init];
self.cameraController.sourceType = UIImagePickerControllerSourceTypeCamera;
self.cameraController.showsCameraControls = NO;
self.cameraController.navigationBarHidden = YES;
self.cameraController.wantsFullScreenLayout = YES;
The problem is that when this is shown, instead of the camera controls, I get a black bar in its place.
How can I make UIImagePickerController.frame take all the screen space?
Thanks!