I deployed my application to an iphone to do some testing.However, everything is suddenly extremely small. Why did this happen ? [import]uid: 40975 topic_id: 7488 reply_id: 307488[/import]
If it’s an iPhone 4 that you put your app onto, and your app doesn’t have any dynamic scaling stuff set up, your app will appear 1/4th of the screen.
You can put this in your config.lua file:
[lua]application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox”
},
}[/lua]
Also see http://blog.anscamobile.com/2010/11/content-scaling-made-easy/ for more information on the topic. [import]uid: 8782 topic_id: 7488 reply_id: 26488[/import]
Thanks that worked. [import]uid: 40975 topic_id: 7488 reply_id: 26493[/import]