react-native-navigation的迁移库

RNNViewLocation.h 326B

12345678910111213
  1. #import <Foundation/Foundation.h>
  2. @interface RNNViewLocation : NSObject
  3. @property (nonatomic) CGRect fromFrame;
  4. @property (nonatomic) CGRect toFrame;
  5. @property (nonatomic) CGFloat fromAngle;
  6. @property (nonatomic) CGFloat toAngle;
  7. - (instancetype)initWithFromElement:(UIView*)fromElement toElement:(UIView*)toElement;
  8. @end