react-native-navigation的迁移库

ElementAnimator.h 468B

123456789101112
  1. #import <Foundation/Foundation.h>
  2. #import "ElementTransitionOptions.h"
  3. #import "BaseAnimator.h"
  4. @interface ElementAnimator : BaseAnimator
  5. - (instancetype)initWithTransitionOptions:(ElementTransitionOptions *)transitionOptions view:(UIView *)view fromVC:(UIViewController *)fromVC toVC:(UIViewController *)toVC containerView:(UIView *)containerView;
  6. - (NSMutableArray<id<DisplayLinkAnimation>> *)createAnimations:(ElementTransitionOptions *)transitionOptions;
  7. @end