Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我为 4 英寸屏幕制作应用程序时,我只是把它拉长了!我不想这样做,我希望它在 iphone 4 和 5 上运行时看起来相同。
您需要让图像的一部分可拉伸,例如,如果您有一个圆角背景,您可以拉伸它的中心而不会使角变形。任何其他类型的背景也是如此(我假设您有一个需要拉伸的背景)。一旦决定了要变形的部分,就可以使用 UIImagestretchableImageWithLeftCapWidth:topCapHeight:来避免拉伸其余部分。
stretchableImageWithLeftCapWidth:topCapHeight:
如果您还没有准备好妥协和拉伸图像的一部分,恐怕您将不得不使用 2 张不同的图像,一张用于 4 英寸(iPhone 5),一张用于 3.5 英寸(iPhone <5)。