0

我只是很好奇如何开发一个适合普通屏幕和视网膜屏幕的应用程序。

我的意思是像 iPad 1、2 mini 和 iPad 3、4

您是否创建了两组具有不同分辨率的图像?

干杯比尔

4

1 回答 1

1

You can either develop app just to fit a normal screen - and on retina screens, the device will convert each pixel into a 2x2 pixel block.

Or create an adaptive layout - ie: the app lays out its objects to fit any size screen (within reason) - i believe "liquid layout" is the customary term.

Assuming you are not using Flex, if you want an adaptive layout you will have to implement one yourself.

于 2013-02-22T01:45:06.470 回答