I'm facing this annoying problem with my App layout.
As you can see from the image at following link, toolbar is overlapping the statusbar only for iPhone 4/4s (next devices it works perfectly).
It's a 4 years old app, Objective-C written, I'm "inheriting" it from old dev team that never noticed this issue.
Thanks!
Asked
Active
Viewed 47 times
0

Mattia Fazio
- 25
- 2
- 8
-
Thanks, but I'm using default navigation bar... – Mattia Fazio Aug 13 '15 at 10:06
1 Answers
0
Try to handle different the iPhone 4/4s screen using:
[[UIScreen mainScreen] bounds].size.height < 1000
And do whatever is necessary for the specific device screen size. You can find all iPhone device resolutions here
Hope this helps

cmario
- 605
- 1
- 7
- 22
-
Ok. It's quite similar to the solution that I was approciating but I have one more problem: in this project there are more than 400 .xib files, so I should implement this control to any of these. I'm looking for something generic. – Mattia Fazio Aug 13 '15 at 10:11