我在标签栏视图控制器中有一个自定义视图。我已经为自定义视图设置了自动调整大小掩码,但它没有在 iphone 5 屏幕上对齐。在 iphone 4 屏幕上看起来不错。我在标签栏视图控制器的视图中确实加载了此代码。
self.customBadge = [CustomBadge customBadgeWithString:[AppGlobals sharedInstance].badgeNumber];
self.customBadge.frame = CGRectMake(165, 420, self.customBadge.frame.size.width, self.customBadge.frame.size.width);
self.customBadge.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;
[self.view addSubview: self.customBadge];