Ti.UI.NOTIFICATION_DURATION_LONG 无法在 iOS 工作?
Ti.UI.NOTIFICATION_DURATION_LONG not working in iOS?
var myToastNotification = Ti.UI.createNotification();
myToastNotification.message = 'login Successfull';
myToastNotification.duration = Ti.UI.NOTIFICATION_DURATION_LONG;
我尝试了上面的代码来实现toast。它在 android 中工作正常,但在 iOS.
中不工作
此 属性 仅适用于 Android。
NOTIFICATION_DURATION_LONG :
Specifies a long duration for an Android Toast notification (Titanium.UI.Notification).
var myToastNotification = Ti.UI.createNotification();
myToastNotification.message = 'login Successfull';
myToastNotification.duration = Ti.UI.NOTIFICATION_DURATION_LONG;
我尝试了上面的代码来实现toast。它在 android 中工作正常,但在 iOS.
中不工作此 属性 仅适用于 Android。
NOTIFICATION_DURATION_LONG :
Specifies a long duration for an Android Toast notification (Titanium.UI.Notification).