我已将我的应用程序上传到 Testflight,并且运行正常。现在我需要在 App Store 中部署一个新版本。我阅读了文档,但 iTunesConnect 具有不同的用户界面,我不确定如何以简单的方式从 iTunesConnect 推送到 AppStore。任何想法,链接?
谢谢。
嗨,我是 ionic 新手,我正在使用 (katzer/cordova-plugin-local-notifications),我遇到了问题,我不知道发生了什么。
当我点击一个链接时,我会生成一个新的通知。但是我不知道为什么当我在通知中第二次点击时,“计划”和“触发”里面的警报被执行了两次,当我在通知中第三次点击时,里面的警报"schedule" 和 "trigger" 执行 3 次,依此类推。
这是我的代码,非常简单:
$scope.addNotification = function (){
var idaudio = Math.round(Math.random() * 10000);
var date = Date.now();
cordova.plugins.notification.local.schedule({
id: idaudio,
title: 'Remember',
text: 'New Remember',
at: date
});
cordova.plugins.notification.local.on("schedule", function(notification){
alert("scheduled: " + notification.id);
});
cordova.plugins.notification.local.on('trigger', function (notification){
alert("trigger" + notification.id)
});
}
Run Code Online (Sandbox Code Playgroud)
我需要当我单击通知时,只有一个警报会打印相关的通知 ID。
有人可以帮我吗?
提前致谢。
notifications localnotification phonegap-plugins cordova cordova-plugins