项目作者: keleyundou

项目描述 :
Custom View Controller Transitions
高级语言: Objective-C
项目地址: git://github.com/keleyundou/ViewControllerTransitions.git
创建时间: 2019-03-27T06:26:48Z
项目社区:https://github.com/keleyundou/ViewControllerTransitions

开源协议:MIT License

下载


ViewControllerTransitions

核心思想

抽离转场动画,使用户只需关心UI样式。

2种风格样式:RTAnimationTransitionStyleAlertRTAnimationTransitionStyleSheet


Alert
Sheet

使用方法

使自定义的UIViewController遵守RTPopAnimatedDelegate协议。

  1. #import "RTPopAnimatedDelegate.h"
  2. @interface SheetViewController : UIViewController<RTPopAnimatedDelegate>
  3. @end
  4. ...
  5. - (RTAnimationTransitionStyle)animatedTransitionStyle {
  6. return RTAnimationTransitionStyleSheet;
  7. }