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

I am working on Migrating my App from iPhone 4,4S to iPhone 5 .I have created all the code programmatically without using any xib

I tried following the Code given:

iOS 6 apps - how to deal with iPhone 5 screen size?

but its not helping me out

I write the code as :

- (UIDeviceResolution)checkFortheDeviceVersionforiPhone4or5
{
    UIDeviceResolution resolution = UIDeviceResolution_Unknown;

    UIScreen *mainScreen = [UIScreen mainScreen];

    CGFloat scale = ([mainScreen respondsToSelector:@selector(scale)] ? mainScreen.scale : 1.0f);

    CGFloat pixelHeight = (CGRectGetHeight(mainScreen.bounds) * scale);

    NSLog(@"DEVICE HEIGHT %f",pixelHeight);

    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
    {

        /*iPhone*/
        if (scale == 2.0f)
        {
            if (pixelHeight == 960.0f)
            {
                /*4 or 4S inch screen*/

                resolution = UIDeviceResolution_iPhoneRetina35;
            }
            else if (pixelHeight == 1136.0f)
            {
                /* 4 inch screen */
                resolution = UIDeviceResolution_iPhoneRetina4;
            }

        }
        else if (scale == 1.0f && pixelHeight == 480.0f)
        {
            /*// iPhone 1,3,3GS Standard Display   */
            resolution = UIDeviceResolution_iPhoneStandard;
        }

    }
    else
    {
        /*iPad*/
        if (scale == 2.0f && pixelHeight == 2048.0f)
        {
            // iPad 3 Retina Display            (2048x1536px)

            resolution = UIDeviceResolution_iPadRetina;

        }
        else if (scale == 1.0f && pixelHeight == 1024.0f)
        {
            // iPad 1,2,mini Standard Display       (1024x768px)

            resolution = UIDeviceResolution_iPadStandard;
        }
    }

    return resolution;
}

I even followed the code given :

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
    CGSize result = [[UIScreen mainScreen] bounds].size;
    if(result.height == 480)
    {
        // iPhone Classic
    }
    if(result.height == 568)
    {
        // iPhone 5
    }
}

Any help would be appreciated

Thanks Vikas

share|improve this question
What are you trying to achieve? With the code above you just check which screen size is used, but it doesn't change the way your iPhone app looks like. – doonot Jan 4 at 12:51

1 Answer

I created an inmate of size 640*1136 by the name of "Default-568h@2x.png" and my simulator for iPhone 5 got created other than this i choose iPhone 5 retina from Simulator--> Hadware-->Devices

share|improve this answer
I need to know as i followed the above approach of having "Default-568h@2x.png" as a splash image but i don't have any splash image in my project. As per my knowledge the moment i include this splash image my window gets notified that its for iPhone 5 and adjust the simulator accordingly However if i don't use above image then the screen of 4/4S is created leaving empty space above the status bar and below this screen of View.?? Any help would be appreciated Thanks Vikas – Vikas Ojha Dec 10 '12 at 12:07

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.