react-native-navigation的迁移库

RNNTabBarController.h 808B

123456789101112131415161718
  1. #import <UIKit/UIKit.h>
  2. #import "RNNParentProtocol.h"
  3. #import "RNNEventEmitter.h"
  4. @interface RNNTabBarController : UITabBarController <RNNParentProtocol, UITabBarControllerDelegate>
  5. - (instancetype)initWithLayoutInfo:(RNNLayoutInfo *)layoutInfo childViewControllers:(NSArray *)childViewControllers options:(RNNNavigationOptions *)options optionsResolver:(RNNParentOptionsResolver *)optionsResolver presenter:(RNNBasePresenter *)presenter eventEmitter:(RNNEventEmitter *)eventEmitter;
  6. - (void)setSelectedIndexByComponentID:(NSString *)componentID;
  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. @end