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

后端 未结 30 3160
醉话见心
醉话见心 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:02

    You can use this define to calculate if you are using the iPhone 5 based on screen size:

    #define IS_IPHONE_5 ( fabs( ( double )[ [ UIScreen mainScreen ] bounds ].size.height - ( double )568 ) < DBL_EPSILON )
    

    then use a simple if statement :

        if (IS_IPHONE_5) {
    
        // What ever changes
        }
    

提交回复
热议问题