Преглед изворни кода

center customTitleView fixed for xcode 8 builds

yogevbd пре 6 година
родитељ
комит
0c8054b8ff
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      ios/RCCCustomTitleView.m

+ 1
- 1
ios/RCCCustomTitleView.m Прегледај датотеку

@@ -54,7 +54,7 @@
54 54
 
55 55
 - (void)rootViewDidChangeIntrinsicSize:(RCTRootView *)rootView {
56 56
     if ([self.alignment isEqualToString:@"center"]) {
57
-        [self setFrame:CGRectMake(0, 0, rootView.intrinsicContentSize.width, rootView.intrinsicContentSize.height)];
57
+        [self setFrame:CGRectMake(self.frame.origin.x, self.frame.origin.y, self.subView.intrinsicContentSize.width, self.subView.intrinsicContentSize.height)];
58 58
         [self.subView setFrame:CGRectMake(0, 0, rootView.intrinsicContentSize.width, rootView.intrinsicContentSize.height)];
59 59
     }
60 60
 }