react-native-navigation的迁移库

RNNExternalComponentStore.h 368B

12345678910111213
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "ReactNativeNavigation.h"
  4. #import "RNNLayoutInfo.h"
  5. @interface RNNExternalComponentStore : NSObject
  6. - (void)registerExternalComponent:(NSString *)name callback:(RNNExternalViewCreator)callback;
  7. - (UIViewController *)getExternalComponent:(RNNLayoutInfo *)layoutInfo bridge:(RCTBridge *)bridge;
  8. @end