WXSTranistion 初解

Crazy巴旦木發表於2018-08-08

自定義轉場動畫 UIViewControllerTransitioningDelegate 自定義模態轉場動畫時使用。 設定UIViewController的屬性transitioningDelegate。 @property (nullable, nonatomic, weak) id transitioningDelegate 主要靠這兩個方法

  • (nullable id )navigationController:(UINavigationController *)navigationController interactionControllerForAnimationController:(id ) animationController NS_AVAILABLE_IOS(7_0);

  • (nullable id )navigationController:(UINavigationController *)navigationController animationControllerForOperation:(UINavigationControllerOperation)operation fromViewController:(UIViewController *)fromVC toViewController:(UIViewController *)toVC NS_AVAILABLE_IOS(7_0); 把系統的轉場動畫代理方法自定義 在用系統的present跳轉就可以了。

相關文章