ソースを参照

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];