react-native-navigation的迁移库

TextStorageTransition.h 507B

1234567891011121314
  1. #import "ElementBaseTransition.h"
  2. #import "AnimatedTextView.h"
  3. @interface TextStorageTransition : ElementBaseTransition
  4. - (instancetype)initWithView:(UIView *)view from:(NSTextStorage *)from to:(NSTextStorage *)to startDelay:(NSTimeInterval)startDelay duration:(NSTimeInterval)duration interpolation:(Text *)interpolation;
  5. @property (nonatomic, strong) AnimatedTextView* view;
  6. @property (nonatomic, readonly, strong) NSTextStorage* from;
  7. @property (nonatomic, readonly, strong) NSTextStorage* to;
  8. @end