react-native-navigation的迁移库

RNNTabBarController.h 892B

12345678910111213141516171819
  1. #import <UIKit/UIKit.h>
  2. #import "RNNParentProtocol.h"
  3. #import "RNNEventEmitter.h"
  4. #import "RNNTabBarPresenter.h"
  5. @interface RNNTabBarController : UITabBarController <RNNParentProtocol, UITabBarControllerDelegate>
  6. - (instancetype)initWithLayoutInfo:(RNNLayoutInfo *)layoutInfo childViewControllers:(NSArray *)childViewControllers options:(RNNNavigationOptions *)options defaultOptions:(RNNNavigationOptions *)defaultOptions presenter:(RNNTabBarPresenter *)presenter eventEmitter:(RNNEventEmitter *)eventEmitter;
  7. - (void)setSelectedIndexByComponentID:(NSString *)componentID;
  8. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  9. @property (nonatomic, retain) RNNTabBarPresenter* presenter;
  10. @property (nonatomic, strong) RNNNavigationOptions* options;
  11. @property (nonatomic, strong) RNNNavigationOptions* defaultOptions;
  12. @property (nonatomic, strong) RNNEventEmitter *eventEmitter;
  13. @end