在警告对话框中呈现时,某些长字符串在iOS7上不可见, 即
Ti.UI.createAlertDialog({message: offending_string...
答案 0 :(得分:0)
要设置的属性不是text
,而是message
。
像这样:
var dialog = Ti.UI.createAlertDialog({
message: 'Here is my message on the dialog',
title: 'Here is my title'
}).show();