I am working on a universal iOS app and UI is completed based on iPhone 5 (4 inch display), now I have to make all the UI stuff look fine in older iPhones (3.5 inch displays).
I am using UIStoryboard,
AutoLayout = YES,
ARC = YES,
All UI is designed using IB in UIStoryboard.
deployment target = iOS 6+
What is the best way to manage UI for iPhone 5 (4 inch) and other iPhones (3.5 inch)
I tried  Separate  UIStoryboard for both screen sizes but its not working and default 4 inch UIStoryboard is gets loaded all the times.
please suggest the best way to achieve this.
