瀏覽代碼

Prefer use of intrinsicContentSize (#1783)

This converts from using a deprecated attribute.
Eli Perkins 7 年之前
父節點
當前提交
4c4eb7bb91
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      ios/RCCCustomBarButtonItem.m

+ 1
- 1
ios/RCCCustomBarButtonItem.m 查看文件

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