Browse Source

fix unit ios

yogevbd 6 years ago
parent
commit
94b0df38c2
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      lib/ios/RNNBottomTabsOptions.m
  2. 1
    1
      lib/ios/RNNTopBarOptions.m

+ 1
- 1
lib/ios/RNNBottomTabsOptions.m View File

@@ -40,7 +40,7 @@ extern const NSInteger BLUR_TOPBAR_TAG;
40 40
 	if (self.translucent) {
41 41
 		viewController.tabBarController.tabBar.translucent = [self.translucent boolValue];
42 42
 	} else {
43
-		viewController.tabBarController.tabBar.translucent = YES;
43
+		viewController.tabBarController.tabBar.translucent = NO;
44 44
 	}
45 45
 	
46 46
 	if (self.hideShadow) {

+ 1
- 1
lib/ios/RNNTopBarOptions.m View File

@@ -114,7 +114,7 @@ extern const NSInteger BLUR_TOPBAR_TAG;
114 114
 	if (self.translucent) {
115 115
 		viewController.navigationController.navigationBar.translucent = [self.translucent boolValue];
116 116
 	} else {
117
-		viewController.navigationController.navigationBar.translucent = YES;
117
+		viewController.navigationController.navigationBar.translucent = NO;
118 118
 	}
119 119
 	
120 120
 	if (self.drawBehind) {