Want to provide only square photo capture option from our app. Right now with the below code its giving square crop option after capturing. But want it to be exactly like default camera square option. Also we don't want to show anything other than square.
Below is the code we are using.
UIImagePickerController *controller = [[UIImagePickerController alloc] init];
controller.sourceType = UIImagePickerControllerSourceTypeCamera;
controller.allowsEditing = YES;
controller.cameraCaptureMode = UIImagePickerControllerCameraCaptureModePhoto;
// controller.mediaTypes = [UIImagePickerController availableMediaTypesForSourceType: UIImagePickerControllerSourceTypeCamera];
controller.delegate = self;
[self.navigationController presentViewController: controller animated: YES completion: nil];
Attached the screen shot
This is our app
We want it to be like this.