react-native-navigation的迁移库

RNNStore.h 246B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RCTBridgeModule.h"
  4. @interface RNNStore : NSObject
  5. @property (atomic, strong) RCTBridge* bridge;
  6. +(instancetype)sharedInstance;
  7. +(id<UIApplicationDelegate>)appDelegate;
  8. @end