Skip to content

Instantly share code, notes, and snippets.

View escoz's full-sized avatar

Eduardo Scoz escoz

  • Google
  • San Francisco, CA
View GitHub Profile
private void _showCloseableModal(UIViewController controller) {
var nav = new UINavigationController(controller);
nav.NavigationBar.TintColor = UIColor.Black;
controller.NavigationItem.RightBarButtonItem = new UIBarButtonItem("Close", UIBarButtonItemStyle.Done, (object sender, EventArgs args)=>{
this.DismissModalViewControllerAnimated(true);
});
this.PresentModalViewController(nav , true);
}