react-native-navigation的迁移库

RNNTabBarController.h 684B

12345678910111213141516
  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 presenter:(RNNBasePresenter *)presenter eventEmitter:(RNNEventEmitter *)eventEmitter;
  6. - (void)setSelectedIndexByComponentID:(NSString *)componentID;
  7. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  8. @property (nonatomic, retain) RNNViewControllerPresenter* presenter;
  9. @property (nonatomic, strong) RNNNavigationOptions* options;
  10. @end