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