Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been making an app over the past few months for the sake of progressing my knowledge of coding. Having left most of the visual side of the project to the end I have only recently come across a problem concerning my background images for the iPhone 5.

I am aware of the naming conventions, lets say "background.png' for non retina iPhone displays and "background@2x.png" for retina displays, but my issue lies with setting a background image specifically for iPhone 5. I'm currently using the following code to detect the screen size and to then set the background image accordingly:

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
    CGSize result = [[UIScreen mainScreen] bounds].size;

    if(result.height == 568)
    {

        // iPhone 5
        NSInteger height = result.height;
        NSInteger width = result.width;
        NSLog(@"iPhone 5 ------ Height = %d & Width = %d", height, width);
        [[self view] setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"background-dazzle-5"]]];
    }
    else
    {
        [[self view] setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"background-dazzle"]]];
    }
} 

As I have read the -568h extension only effects the launch image i felt there was no need to currently name my iPhone 5 images with it. The dimensions of the image i'm trying to display are 640 x 1136, which i'm aware is too large for the screen; but I can't see why the image is becoming so magnatized that you can't see the image.

The code I use to display the image has worked perfectly for each screen on non-retina iPhones and retina 4/4s iPhones, but when I run this in the 4-inch simulator you simply can't see the picture.

Is there any obvious settings that may be causing this to happen? I have all my launch images in the app and working correctly, and to this point all other non-iPhone 5 images have worked too.

Hopefully this makes sense to someone, sorry for the long post but times are desperate. Thanks in advance, Tom.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.