Hi,
I have written DependencyService for iOS and have below code to open up a pdf document in preview mode. This has a DONE button to dismiss preview and Share button at right (to share the document).
I want to restrict user from sharing the document.
How can I remove this Share button which comes by default ?
NSUrl URL = new NSUrl (path, false);
UIDocumentInteractionController documentInteractionController = UIDocumentInteractionController.FromUrl (URL);
documentInteractionController.Delegate = new UIDocumentInteractionControllerDelegateClass (UIApplication.SharedApplication.KeyWindow.RootViewController.ChildViewControllers[0].ChildViewControllers[ChildViewControllers.Length]);
documentInteractionController.PresentPreview (true);