react-native-navigation的迁移库

RNNTopTabsViewController.h 657B

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