0

在警报对话框中呈现时,某些长字符串在 iOS7 上不可见,即。

Ti.UI.createAlertDialog({message: offending_string...

参考: https ://gist.github.com/cornflakesuperstar/6680066

4

1 回答 1

0

要设置的属性 not textbut message

像这样:

var dialog = Ti.UI.createAlertDialog({
    message: 'Here is my message on the dialog',
    title: 'Here is my title'
}).show();
于 2013-09-24T12:41:53.307 回答