How to develop or migrate apps for iPhone 5 screen resolution?

后端 未结 30 3159
醉话见心
醉话见心 2020-11-21 05:48

The new iPhone 5 display has a new aspect ratio and a new resolution (640 x 1136 pixels).

What is required to develop new or transition already existing applications

30条回答
  •  难免孤独
    2020-11-21 06:11

    Try the below method in a singleton class:

    -(NSString *)typeOfDevice
        {
            if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
            {
                CGSize result = [[UIScreen mainScreen] bounds].size;
                if(result.height == 480)
                {
                    return @"Iphone";
                }
                if(result.height == 568)
                {
                    return @"Iphone 5";
                }
            }
            else{
                return @"Ipad";;
            }
    
    
            return @"Iphone";
        }
    

提交回复
热议问题