react-native-navigation的迁移库

RNNOptions.h 372B

123456789101112131415161718
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import <React/RCTConvert.h>
  4. @protocol RNNOptionsProtocol <NSObject>
  5. @optional
  6. -(void)resetOptions;
  7. -(void)applyOn:(UIViewController*)viewController;
  8. @end
  9. @interface RNNOptions : NSObject <RNNOptionsProtocol>
  10. -(instancetype)initWithDict:(NSDictionary*)dict;
  11. -(void)mergeWith:(NSDictionary*)otherOptions;
  12. @end