react-native-navigation的迁移库

RNNTabBarController.h 675B

1234567891011121314151617
  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) RNNBasePresenter* presenter;
  9. @property (nonatomic, strong) RNNNavigationOptions* options;
  10. @end