From prefix.pch I want to return 4 if iPhone is iPhone 4 or lower and 5 if iPhone is iPhone 5 or more...
I know how to know the height
#define iPhoneHeight [[UIScreen mainScreen] bounds].size.height
Based on this, I get height, but I want to return 4 or 5.
Any idea how to get this done?