This is a little bit of an odd request, but I'm trying to create an app that has animations that go between screens. The issue I'm having is that when I tell the devices to create a UIView 35 by 35, it is different sizes on the iPad and the iPhone.
CGRectMake(0, 100, 35, 35);
So, my goal is to create a UIView of the exact same size on all devices. I tried looking into scale, but both devices have a scale of 2 when I tested them.
[UIScreen mainScreen].scale
They only appear to be slightly different in size, so I'm not sure what I need to do. Any thoughts or ideas are much appreciated!