react-native-navigation的迁移库

BottomTabsTogetherAttacher.m 393B

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