Reputation: 9813
I have read a few of the posts, and was able to implement into most of my app, however the main screen does not fully show up on the iphone 5. There is about a 1 inch space at the bottom that I cant seem to fix.
I have some images attached to clarify any questions.
The @2x images are loading properly, it seems the view is constrained to the smaller size which shows up fine on the simulator.
Any thoughts?
#import "Mainscreencantroller.h"
#import "OBShapedButton.h"
@interface Mainscreencantroller ()
@end
@implementation Mainscreencantroller
@synthesize delegate;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
Everything in autosizing is selected (middle arrows and outside ones)
I noticed that the length and width here arent grayed out like all the other xib files.
Upvotes: 1
Views: 1976
Reputation: 978
I just finished doing an update for iPhone 5 support. A good deal of my background images were center aligned and I need to to change them to top aligned to work properly for the the larger screen size.
Upvotes: 1