I have tried 3 different fonts. All work on the simulator. None work on the device (iPad). One of the fonts has a space in the font name, the others don’t. The fonts are all located in the root of my project folder. Here’s my build.settings file:
settings =
{
orientation =
{
default ="landscapeRight",
content = "landscapeRight",
supported =
{
"landscapeLeft","landscapeRight"
},
},
iphone =
{
plist =
{
MinimumOSVersion="4.0.0",
UIStatusBarHidden = true,
UIApplicationExitsOnSuspend = false,
UIPrerenderedIcon = true,
CFBundleIconFiles = {
"Icon.png",
"Icon@2x.png",
"Icon-72.png"
},
UIAppFonts = {"FuturaDemiBold.ttf", "Futura Bold.ttf", "TRON.TTF"}
},
},
androidPermissions =
{
"android.permission.INTERNET",
"android.permission.ACCESS\_NETWORK\_STATE"
},
}
And here’s an example of how I’m using it:
local myText = display.newText("text", 0, 0, "TRON", 14);
Anyone see anything wrong here? Corona is great for game play, but the time I spend debugging simple UI stuff is getting way out of control… [import]uid: 52127 topic_id: 12421 reply_id: 312421[/import]