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