Parcourir la source

Changed backButton.hideTitle to backButton.showTitle

yogevbd il y a 6 ans
Parent
révision
04bf72979b
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1
    1
      lib/ios/RNNBackButtonOptions.h
  2. 1
    1
      lib/ios/RNNBackButtonOptions.m

+ 1
- 1
lib/ios/RNNBackButtonOptions.h Voir le fichier

@@ -6,6 +6,6 @@
6 6
 @property (nonatomic, strong) NSNumber* visible;
7 7
 @property (nonatomic, strong) NSString* title;
8 8
 @property (nonatomic, strong) NSString* transition;
9
-@property (nonatomic, strong) NSNumber* hideTitle;
9
+@property (nonatomic, strong) NSNumber* showTitle;
10 10
 
11 11
 @end

+ 1
- 1
lib/ios/RNNBackButtonOptions.m Voir le fichier

@@ -13,7 +13,7 @@
13 13
 		viewController.navigationItem.hidesBackButton = ![self.visible boolValue];
14 14
 	}
15 15
 	
16
-	if (self.hideTitle) {
16
+	if (self.showTitle && ![self.showTitle boolValue]) {
17 17
 		self.title = @"";
18 18
 	}
19 19