react-native-navigation的迁移库

BottomTabPresenter.h 545B

1234567891011121314
  1. #import "RNNBasePresenter.h"
  2. @interface BottomTabPresenter : RNNBasePresenter
  3. - (void)applyOptions:(RNNNavigationOptions *)options child:(UIViewController *)child;
  4. - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options child:(UIViewController *)child;
  5. - (void)createTabBarItem:(UIViewController *)child bottomTabOptions:(RNNBottomTabOptions *)bottomTabOptions;
  6. - (void)mergeOptions:(RNNNavigationOptions *)options resolvedOptions:(RNNNavigationOptions *)resolvedOptions child:(UIViewController *)child;
  7. @end