Skip to content

keleyundou/ViewControllerTransitions

Repository files navigation

ViewControllerTransitions

核心思想

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

2种风格样式:RTAnimationTransitionStyleAlertRTAnimationTransitionStyleSheet

Alert Sheet

使用方法

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

#import "RTPopAnimatedDelegate.h"

@interface SheetViewController : UIViewController<RTPopAnimatedDelegate>

@end

...

- (RTAnimationTransitionStyle)animatedTransitionStyle {
    return RTAnimationTransitionStyleSheet;
}