Skip to content

Instantly share code, notes, and snippets.

@olexale
Created September 1, 2017 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olexale/f6c01c886b7b6ff3de7c03777ab36801 to your computer and use it in GitHub Desktop.
Save olexale/f6c01c886b7b6ff3de7c03777ab36801 to your computer and use it in GitHub Desktop.
public class AnimationNavigationControllerDelegate : UINavigationControllerDelegate
{
private TransitionAnimator _animator = new TransitionAnimator();
public override IUIViewControllerAnimatedTransitioning GetAnimationControllerForOperation(UINavigationController navigationController, UINavigationControllerOperation operation, UIViewController fromViewController, UIViewController toViewController)
{
return _animator;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment