react-native-navigation的迁移库

RNNReactRootView.m 303B

1234567891011121314151617
  1. #import "RNNReactRootView.h"
  2. #import "RCTHelpers.h"
  3. #import <React/RCTUIManager.h>
  4. @implementation RNNReactRootView
  5. - (void)layoutSubviews {
  6. [super layoutSubviews];
  7. [self.bridge.uiManager setSize:self.bounds.size forView:self];
  8. }
  9. - (void)contentDidAppear:(NSNotification *)notification {
  10. }
  11. @end