I updated my iOS device to iOS8 beta5 yesterday and noticed alert boxes are no longer displays properly.
More specifically, if I did not specify a button (creating a modal alert, dismissed by timer), the alert box would only show the title and not the body message.
local alert = native.showAlert ("Alert Title", "Alert Body Message");
However as soon as I supply a button, the body message will show up correctly.
local alert = native.showAlert ("Alert Title", "Alert Body Message", {"OK"});
Prior to Beta5, the body message will still show even without button information supplied.
I’m not sure if this is a rule changed by Apple, or simply a bug in this version of Beta. Anyone have similar problems?