Skip to content

Instantly share code, notes, and snippets.

@jamesantrobus
Created December 27, 2010 22:24
Show Gist options
  • Select an option

  • Save jamesantrobus/756636 to your computer and use it in GitHub Desktop.

Select an option

Save jamesantrobus/756636 to your computer and use it in GitHub Desktop.
//code doesn't throw but the modal window isn't displayed
partial void openModalWindow (MonoTouch.UIKit.UIButton sender)
{
ModalViewController modal = new ModalSpike.ModalViewController
{
ModalTransitionStyle = UIModalTransitionStyle.CoverVertical,
ModalPresentationStyle = UIModalPresentationStyle.FormSheet
};
this.navigationController.PresentModalViewController(modal, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment