Exemplo n.º 1
0
        public IUIViewControllerAnimatedTransitioning GetAnimationControllerForDismissedController(UIViewController dismissed)
        {
            LOTAnimationTransitionController animationController = new LOTAnimationTransitionController(
                animation: "vcTransition2",
                fromLayer: "outLayer",
                toLayer: "inLayer");

            return(animationController);
        }
Exemplo n.º 2
0
        public IUIViewControllerAnimatedTransitioning GetAnimationControllerForPresentedController(UIViewController presented, UIViewController presenting, UIViewController source)
        {
            LOTAnimationTransitionController animationController = new LOTAnimationTransitionController(
                animation: "vcTransition1",
                fromLayer: "outLayer",
                toLayer: "inLayer");

            return(animationController);
        }