yogevbd 6 년 전
부모
커밋
a776670690
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      lib/ios/RNNBottomTabsOptions.m

+ 2
- 0
lib/ios/RNNBottomTabsOptions.m 파일 보기

@@ -25,8 +25,10 @@ extern const NSInteger BLUR_TOPBAR_TAG;
25 25
 	
26 26
 	if (self.drawBehind) {
27 27
 		if ([self.drawBehind boolValue]) {
28
+			[viewController setExtendedLayoutIncludesOpaqueBars:YES];
28 29
 			viewController.edgesForExtendedLayout |= UIRectEdgeBottom;
29 30
 		} else {
31
+			[viewController setExtendedLayoutIncludesOpaqueBars:NO];
30 32
 			viewController.edgesForExtendedLayout &= ~UIRectEdgeBottom;
31 33
 		}
32 34
 	}