소스 검색

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

grin 7 년 전
부모
커밋
68449cc48c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      ios/Helpers/RCCTitleViewHelper.m

+ 1
- 1
ios/Helpers/RCCTitleViewHelper.m 파일 보기

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