我正在使用phonegap实现一个iPhone应用程序。我使用城市飞艇进行推送通知。推送通知运行良好,唯一的错误是通知的标题是“index.html”。有人知道如何更改此默认标题吗?
答案 0 :(得分:0)
使用Phonegap API:
中的警报功能,而不是仅使用标准警报()navigator.notification.alert(message, alertCallback, [title], [buttonName])
在你的情况下,它会是这样的:
navigator.notification.alert(theAlertMsgVar, null, 'Your title', null);