react-native-navigation的迁移库

RNN.h 281B

123456789101112131415161718
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. @class RCTBridge;
  4. @interface RNN : NSObject
  5. +(id<UIApplicationDelegate>)appDelegate;
  6. +(instancetype)instance;
  7. -(void)init:(NSURL*)jsCodeLocation launchOptions:(NSDictionary*)launchOptions;
  8. -(RCTBridge*)bridge;
  9. @end