react-native-navigation的迁移库

RNNControllerFactory.h 418B

1234567891011121314151617
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNRootViewCreator.h"
  4. #import "RNNStore.h"
  5. #import "RNNEventEmitter.h"
  6. @interface RNNControllerFactory : NSObject
  7. -(instancetype)initWithRootViewCreator:(id <RNNRootViewCreator>)creator
  8. store:(RNNStore*)store
  9. eventEmitter:(RNNEventEmitter*)eventEmitter;
  10. -(UIViewController*)createLayoutAndSaveToStore:(NSDictionary*)layout;
  11. @end