1 |
|
2 |
|
3 |
|
4 | @implementation UIWindow (RNScreens)
|
5 |
|
6 | - (void)didAddSubview:(UIView *)subview
|
7 | {
|
8 | if (![subview isKindOfClass:[RNSFullWindowOverlayContainer class]]) {
|
9 | for (UIView *view in self.subviews) {
|
10 | if ([view isKindOfClass:[RNSFullWindowOverlayContainer class]]) {
|
11 | [self bringSubviewToFront:view];
|
12 | }
|
13 | }
|
14 | }
|
15 | }
|
16 |
|
17 | @end
|