Pārlūkot izejas kodu

[iOS] Setting title through navigation item doesn't change the tab bar label (#897)

grin 8 gadus atpakaļ
vecāks
revīzija
68449cc48c
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      ios/Helpers/RCCTitleViewHelper.m

+ 1
- 1
ios/Helpers/RCCTitleViewHelper.m Parādīt failu

61
     self.titleView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
61
     self.titleView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
62
     self.titleView.clipsToBounds = YES;
62
     self.titleView.clipsToBounds = YES;
63
     
63
     
64
-    self.viewController.title = self.title;
64
+    self.viewController.navigationItem.title = self.title;
65
     
65
     
66
     if ([self isTitleOnly]) {
66
     if ([self isTitleOnly]) {
67
         self.viewController.navigationItem.titleView = nil;
67
         self.viewController.navigationItem.titleView = nil;