Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I test in iOS Simulator Retina 3.5-inch, it is well work. but when in Retina 4-inch, it is occured black area like following a picture.

I can't know this reason...

Would you give me a some idea?


Following is AppDelegate.h & m

#import <UIKit/UIKit.h>
#import "MenuViewCon.h"

@class TestViewCon;

@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) TestViewCon *viewController;

@end

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];

    // Override point for customization after application launch.
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
        self.viewController = [[[TestViewCon alloc] initWithNibName:@"ViewController_iPhone" bundle:nil] autorelease];

    } else {
        self.viewController = [[[TestViewCon alloc] initWithNibName:@"ViewController_iPad" bundle:nil] autorelease];
    }

    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];
    return YES;
}


Next is TestViewCon.h & m

#import <Foundation/Foundation.h>
@interface TestViewCon : UIViewController
@end

#import "TestViewCon.h"    
@implementation TestViewCon {
}

- (void)viewDidLoad {
    UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 100)] autorelease];
    label.text = @"Retina 4 inch testing";
    [label sizeToFit];
    [self.view addSubview:label];
}
@end

enter image description here enter image description here

share|improve this question

1 Answer

up vote 1 down vote accepted

This is because you app runs letterboxed.
It seems, that you don't support the iphone 5 within your project.

To do that, you need to add a Default-568h@2x.png Image to your project and set it as the launchimage for the iPhone 5.

share|improve this answer
Oh! my god!! You are so accurate, wonderful, great, awesome and big man!!! – user868754 Oct 17 '12 at 20:39
Thank you for your interest. – user868754 Oct 17 '12 at 20:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.