소스 검색

[IOS] - set titleLabel sizeToFit (#2443)

Michael Kuczera 6 년 전
부모
커밋
f6d2c334c3
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      ios/Helpers/RCCTitleViewHelper.m

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

@@ -221,7 +221,8 @@ navigationController:(UINavigationController*)navigationController
221 221
         UIColor *color = navBarTextColor != (id)[NSNull null] ? [RCTConvert UIColor:navBarTextColor] : nil;
222 222
         titleLabel.textColor = color;
223 223
     }
224
-    
224
+
225
+    [titleLabel sizeToFit];
225 226
     [self.titleView addSubview:titleLabel];
226 227
     
227 228
     return titleLabel;