1

Hi I have weird problem on iPhone6, iOS8 in iPhone simulator (unfortunately I don't have actual device to test yet).

I have background view whose bottom edge is exactly to top edge of UITabBar 0px overlap, background is in golden colour.

This problem only occurs on iPhone6, on iPhone6 plus and iPhone5 all is ok.

Tab bar on iPhone6 simulator:

enter image description here

Same tabbar on iPhone6 Plus simulator:

enter image description here

Same on iPhone5:

enter image description here

Anyone experienced anything similar? Do you have any suggestion how to fix this? Should I ignore it, if its simulator only issue?

Mirko
  • 2,231
  • 2
  • 21
  • 17
  • Have similar issue right now. Seems that blur effect is not applied to TabBar background, but on iPhone 6 everything looks great. For me it bugs only when taking screenshots for AppStore – Gurnetko Feb 09 '15 at 11:22
  • Check if clip subviews is enabled on view adjacent to the UITabBar – Mirko Feb 10 '15 at 11:39

1 Answers1

1

Did you check the @3x, @2x, @1x image size? sometimes is has an issue with those assets.

eNeF
  • 3,241
  • 2
  • 18
  • 41
  • It might be the case, since my asset has only one size (its used as blurred background), I will check. – Mirko Sep 29 '14 at 01:18
  • Did you check your UITabBar's ViewMode? set to Scale to Fill? also the background color and BarTint? you can check it through your storyboard or [UITabBarItem appearance] like this [[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]]. did you set it like that? – eNeF Sep 29 '14 at 15:11