Parcourir la source

Prefer use of intrinsicContentSize (#1783)

This converts from using a deprecated attribute.
Eli Perkins il y a 7 ans
Parent
révision
4c4eb7bb91
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      ios/RCCCustomBarButtonItem.m

+ 1
- 1
ios/RCCCustomBarButtonItem.m Voir le fichier

@@ -22,7 +22,7 @@
22 22
 }
23 23
 
24 24
 - (void)rootViewDidChangeIntrinsicSize:(RCTRootView *)rootView {
25
-    CGSize size = rootView.intrinsicSize;
25
+    CGSize size = rootView.intrinsicContentSize;
26 26
     rootView.frame = CGRectMake(0, 0, size.width, size.height);
27 27
     self.width = size.width;
28 28
 }