react-native-navigation的迁移库

BottomTabsTogetherAttacher.m 345B

1234567891011121314
  1. #import "BottomTabsTogetherAttacher.h"
  2. @implementation BottomTabsTogetherAttacher
  3. - (void)attach:(UITabBarController *)bottomTabsController {
  4. for (UIViewController* childViewController in bottomTabsController.childViewControllers) {
  5. [childViewController render];
  6. }
  7. [bottomTabsController readyForPresentation];
  8. }
  9. @end