react-native-navigation的迁移库

RNNTopTabsViewController.h 604B

123456789101112131415161718
  1. #import <React/RCTUIManager.h>
  2. #import "RNNParentProtocol.h"
  3. @interface RNNTopTabsViewController : UIViewController <RNNParentProtocol>
  4. @property (nonatomic, retain) UIView* contentView;
  5. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  6. @property (nonatomic, retain) RNNViewControllerPresenter* presenter;
  7. @property (nonatomic, strong) RNNNavigationOptions* options;
  8. @property (nonatomic, strong) RNNNavigationOptions* defaultOptions;
  9. - (void)setViewControllers:(NSArray*)viewControllers;
  10. - (void)viewController:(UIViewController*)vc changedTitle:(NSString*)title;
  11. - (instancetype)init;
  12. @end