I m trying to create a camera Custom UI (somewhat like Instagram camera view )
Can Some one help me with adding .xib (layout for my cameraOverlayView) as cameraOverlayView .
inside -> ViewDidLoad()
base.ViewDidLoad();
var imagePickerControl = new UIImagePickerController();
imagePickerControl.SourceType = UIImagePickerControllerSourceType.Camera;
imagePickerControl.ShowsCameraControls = true;
//Code lines needed to add the xib "CameraOverlayView.xib" as uiview to pass next line
imagePickerControl.CameraOverlayView = ;
var imagePickerDelegate = new CameraImagePicker(this);
imagePickerControl.Delegate = imagePickerDelegate;
NavigationController.PresentModalViewController(imagePickerControl, true);
I was refering to https://developer.xamarin.com/recipes/ios/general/templates/using_the_ios_view_xib_template/
But I was unable to add the xib as my CameraOverlay
Ask for related code if needed .. thanks in advance