Procházet zdrojové kódy

[iOS] Correctly size subtitle label before calculating title view width (#928)

grin před 7 roky
rodič
revize
d100d43924
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      ios/Helpers/RCCTitleViewHelper.m

+ 2
- 1
ios/Helpers/RCCTitleViewHelper.m Zobrazit soubor

@@ -156,7 +156,8 @@ navigationController:(UINavigationController*)navigationController
156 156
     CGRect labelframe = subtitleLabel.frame;
157 157
     labelframe.size = labelSize;
158 158
     subtitleLabel.frame = labelframe;
159
-    
159
+    [subtitleLabel sizeToFit];
160
+
160 161
     [self.titleView addSubview:subtitleLabel];
161 162
     
162 163
     return subtitleLabel;