Parcourir la source

center customTitleView fixed for xcode 8 builds

yogevbd il y a 6 ans
Parent
révision
0c8054b8ff
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      ios/RCCCustomTitleView.m

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

@@ -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
 }