소스 검색

hideFullScreenVideoStatusBars: return early if _autoManageStatusBarEnabled disabled

Kesha Antonov 4 년 전
부모
커밋
d0461e81d0
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      apple/RNCWebView.m

+ 4
- 0
apple/RNCWebView.m 파일 보기

@@ -339,6 +339,10 @@ static NSDictionary* customCertificatesForHost;
339 339
 -(void)hideFullScreenVideoStatusBars
340 340
 {
341 341
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
342
+    if (!_autoManageStatusBarEnabled) {
343
+      return;
344
+    }
345
+
342 346
     _isFullScreenVideoOpen = NO;
343 347
     RCTUnsafeExecuteOnMainQueueSync(^{
344 348
       [RCTSharedApplication() setStatusBarHidden:self->_savedStatusBarHidden animated:YES];