I use pushNotification.setApplicationIconBadgeNumber to clean the push badge in device ready event.
But it is not working(iOS 7.0.6).My js code is below:
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.plugins.pushNotification.setApplicationIconBadgeNumber(successCallback, errorCallback, 0);
}
Anything wrong with it?