瀏覽代碼

fixes statusBar visilibity

yogevbd 7 年之前
父節點
當前提交
69ffb0e643
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6
    2
      lib/ios/RNNStatusBarOptions.m

+ 6
- 2
lib/ios/RNNStatusBarOptions.m 查看文件

21
 	}
21
 	}
22
 	
22
 	
23
 	if (self.style || self.visible) {
23
 	if (self.style || self.visible) {
24
-		[UIView animateWithDuration:[self statusBarAnimationDuration] animations:^{
24
+		if (self.animate) {
25
+			[UIView animateWithDuration:[self statusBarAnimationDuration] animations:^{
26
+				[viewController setNeedsStatusBarAppearanceUpdate];
27
+			}];
28
+		} else {
25
 			[viewController setNeedsStatusBarAppearanceUpdate];
29
 			[viewController setNeedsStatusBarAppearanceUpdate];
26
-		}];
30
+		}
27
 	}
31
 	}
28
 }
32
 }
29
 
33