|
@@ -14,13 +14,14 @@
|
14
|
14
|
return self;
|
15
|
15
|
}
|
16
|
16
|
|
|
17
|
+- (void)layoutSubviews {
|
|
18
|
+ [super layoutSubviews];
|
|
19
|
+ #ifdef DEBUG
|
|
20
|
+ [RCTHelpers removeYellowBox:self];
|
|
21
|
+ #endif
|
|
22
|
+}
|
|
23
|
+
|
17
|
24
|
- (void)contentDidAppear:(NSNotification *)notification {
|
18
|
|
-#ifdef DEBUG
|
19
|
|
- if ([((RNNReactView *)notification.object).moduleName isEqualToString:self.moduleName]) {
|
20
|
|
- [RCTHelpers removeYellowBox:self];
|
21
|
|
- }
|
22
|
|
-#endif
|
23
|
|
-
|
24
|
25
|
RNNReactView* appearedView = notification.object;
|
25
|
26
|
|
26
|
27
|
if (_reactViewReadyBlock && [appearedView.appProperties[@"componentId"] isEqual:self.componentId]) {
|