react-native-navigation的迁移库

RNNComponentView.m 219B

1234567891011121314
  1. #import "RNNComponentView.h"
  2. #import "RCTHelpers.h"
  3. @implementation RNNComponentView
  4. - (void)layoutSubviews {
  5. [super layoutSubviews];
  6. #ifdef DEBUG
  7. [RCTHelpers removeYellowBox:self];
  8. #endif
  9. }
  10. @end