Reputation: 1298
I am showing simple UIImagePickerController
UIImagePickerController *pickerView = [[UIImagePickerController alloc] init];
[pickerView setSourceType:UIImagePickerControllerSourceTypeCamera];
pickerView.showsCameraControls = YES;
[self presentViewController:pickerView animated:YES completion:nil];
It looks normal in debug mode, however there is no Cancel button when I launch app independently. And in any build from testflight. I need cancel button.
Is there any way to log UIImagePickerController's initialization or any means to locate the problem? Maybe some settings is in a way?
I expect UIImagePickerController with all buttons and I've tried switching all custom settings in project, however I cannot remove each dependency
Upvotes: -3
Views: 27