ViewControllerTransitions
核心思想
抽取转场动画,使用户只需关注 UI 样式。
2 种风格样式:RTAnimationTransitionStyleAlert
、RTAnimationTransitionStyleSheet
。
使用方法
确保自定义的 UIViewController
遵守 RTPopAnimatedDelegate
协议。
#import "RTPopAnimatedDelegate.h"
@interface SheetViewController : UIViewController<RTPopAnimatedDelegate>
@end
...
- (RTAnimationTransitionStyle)animatedTransitionStyle {
return RTAnimationTransitionStyleSheet;
}