使用Titanium 3.1.3.GA在iOS7的AlertDialog中看不到文本

时间:2013-09-24 03:48:12

标签: titanium ios7

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

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

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

1 个答案:

答案 0 :(得分:0)

要设置的属性不是text,而是message

像这样:

var dialog = Ti.UI.createAlertDialog({
    message: 'Here is my message on the dialog',
    title: 'Here is my title'
}).show();