I am trying to layout my xib so that layout fits in both iphone 5 (4 inches retina) and 3.5 devices.
Because I have to support IOS-5 I cannot use autolayout. I have
Try adding this to all your controllers which need to support iPhone 5:
- (void) loadView { [super loadView]; self.view.frame = [UIScreen mainScreen].bounds; }