I have an iOS 5 app I am moving to iOS 7.
Not much is going to change, but I would like to be able to do the following to make the screens nicer.
I have a collection of Text labels, image boxes, etc on a tabbed window.
On the 3.5 it looks great.
On the 4 in screen it is toward the top too much.
I would like to move down the group to center it more on the 4 in screen.
I was thinking I could use something like if([UIScreen mainScreen].bounds.size.height>=568)
And then store an offset, but I am not having much luck.
The goal is to group this set of objects and just move then down the screen if the screen is 4 in. We only operate in Portrait so that should be easy enough.
I will then have to do the same thing in the iPad code. Any gotchas there?
Ian