Skip to content

Instantly share code, notes, and snippets.

@jamesantrobus
Created December 27, 2010 22:25
Show Gist options
  • Save jamesantrobus/756637 to your computer and use it in GitHub Desktop.
Save jamesantrobus/756637 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