react-native-navigation的迁移库

RNN.h 412B

1234567891011121314151617181920
  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) RCTBridge* bridge;
  8. @property (readonly) RNNEventEmitter* eventEmitter;
  9. @property (readonly) RNNStore *store;
  10. +(instancetype)instance;
  11. -(void)bootstrap:(NSURL*)jsCodeLocation launchOptions:(NSDictionary*)launchOptions;
  12. @end