Exemple #1
0
        public static void PresentModelView(object view, UIModalTransitionStyle transistionStyle)
        {
            var dvc = CreateDialogViewController(view, true, false);

            dvc.ModalTransitionStyle = transistionStyle;

            var navController = new NavigationController()
            {
                ViewControllers = new UIViewController[] { dvc }
            };

            NavigationController.PresentModalViewController(navController, true);
        }