react-native-navigation的迁移库

RNN.h 464B

123456789101112131415161718192021
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNEventEmitter.h"
  4. #import <React/RCTBridge.h>
  5. #import "RNNStore.h"
  6. @interface RNN : NSObject
  7. @property (readonly) BOOL isReadyToReceiveCommands;
  8. @property (readonly) RCTBridge* bridge;
  9. @property (readonly) RNNEventEmitter* eventEmitter;
  10. @property (readonly) RNNStore *store;
  11. +(instancetype)instance;
  12. -(void)bootstrap:(NSURL*)jsCodeLocation launchOptions:(NSDictionary*)launchOptions;
  13. @end