I am stuck in creating a CameraOverlayView on the UIImagePicker my Xamarin.iOS application here is my code to launch the cameraView
{
var imagePickerControl = new UIImagePickerController();
imagePickerControl.SourceType = UIImagePickerControllerSourceType.Camera;
imagePickerControl.ShowsCameraControls = false;
//imagePickerControl.CameraOverlayView = new CameraOverlayView();
var imagePickerDelegate = new CameraImagePicker(this);
imagePickerControl.Delegate = imagePickerDelegate;
NavigationController.PresentModalViewController(imagePickerControl, true);
}
the above code helped me creating a imagepicker with no controls... can somebody help me creating a CameraOverlayview :UIView I m trying to create a custom UI and basic controls (with 2 imagebuttons and UI like its in instagram Camera screen)