TransitionManager icon indicating copy to clipboard operation
TransitionManager copied to clipboard

Painless custom transitioning. Easy extend, easy setup, just focus on animations.

Results 1 TransitionManager issues
Sort by recently updated
recently updated
newest added

Hi, i tried this code `let navi = UINavigationController(rootViewController: ModalViewController()) navi.transitioningDelegate = self.transitionManager self.present(navi, animated: true, completion: nil)` with my own custom animation: `class ScaleTransitionAnimation: TransitionManagerAnimation { private weak var...