RTAnimatedTransition 0.0.1

RTAnimatedTransition 0.0.1

ColaBean 维护。



  • 作者:
  • ColaBean

ViewControllerTransitions

核心思想

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

2 种风格样式:RTAnimationTransitionStyleAlertRTAnimationTransitionStyleSheet

Alert Sheet

使用方法

确保自定义的 UIViewController 遵守 RTPopAnimatedDelegate 协议。

#import "RTPopAnimatedDelegate.h"

@interface SheetViewController : UIViewController<RTPopAnimatedDelegate>

@end

...

- (RTAnimationTransitionStyle)animatedTransitionStyle {
    return RTAnimationTransitionStyleSheet;
}