react-native-navigation的迁移库

RNNRootViewController.h 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNLayoutNode.h"
  4. #import "RNNRootViewCreator.h"
  5. #import "RNNEventEmitter.h"
  6. #import "RNNNavigationOptions.h"
  7. #import "RNNAnimator.h"
  8. #import "RNNTopTabsViewController.h"
  9. #import "RNNRootViewProtocol.h"
  10. @class RNNRootViewController;
  11. @interface RNNRootViewController : UIViewController <RNNRootViewProtocol, UIViewControllerPreviewingDelegate, UISearchResultsUpdating, UISearchBarDelegate>
  12. @property (nonatomic, strong) RNNNavigationOptions* options;
  13. @property (nonatomic, strong) RNNEventEmitter *eventEmitter;
  14. @property (nonatomic, strong) NSString* componentId;
  15. @property (nonatomic, strong) RNNTopTabsViewController* topTabsViewController;
  16. @property (nonatomic) id<RNNRootViewCreator> creator;
  17. @property (nonatomic, strong) RNNAnimator* animator;
  18. @property (nonatomic, strong) UIViewController* previewController;
  19. -(instancetype)initWithName:(NSString*)name
  20. withOptions:(RNNNavigationOptions*)options
  21. withComponentId:(NSString*)componentId
  22. rootViewCreator:(id<RNNRootViewCreator>)creator
  23. eventEmitter:(RNNEventEmitter*)eventEmitter
  24. isExternalComponent:(BOOL)isExternalComponent;
  25. -(void)applyTabBarItem;
  26. -(void)applyTopTabsOptions;
  27. @end