react-native-navigation的迁移库

TransformRectTransition.h 477B

123456789101112
  1. #import "ElementBaseTransition.h"
  2. #import "RectTransition.h"
  3. @interface TransformRectTransition : RectTransition
  4. - (instancetype)initWithView:(UIView *)view fromRect:(CGRect)fromRect toRect:(CGRect)toRect fromAngle:(CGFloat)fromAngle toAngle:(CGFloat)toAngle startDelay:(NSTimeInterval)startDelay duration:(NSTimeInterval)duration interpolation:(Text *)interpolation;
  5. @property (nonatomic, readonly) CGFloat fromAngle;
  6. @property (nonatomic, readonly) CGFloat toAngle;
  7. @end