タブバー ビュー コントローラーにカスタム ビューがあります。カスタム ビューの自動サイズ変更マスクを設定しましたが、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];