I'm having problems with the layout on the iphone 4 and iphone 5. Actually the iphone 4, everything works, the problem is the iphone 5. The issue in iPhone5 is where have the green circle. The login page, it lost some parts of box inside navigation bar and the back button not show, in the list page not show background image and the title is black!
Follows pictures:
iPhone 4 - iOS 5.1.1
iPhone 5 - iOS 7.0.3
Here is how i set the background image to view up the table:
UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"background.png"]];
self.viewUp.backgroundColor = background;
And here how i set the back button with Appearance proxy in my appDelegate
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60) forBarMetrics:UIBarMetricsDefault];
UIImage *backButtonHomeImage = [[UIImage imageNamed:@"navegacao_botao_voltar.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:backButtonHomeImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];