非常感谢您查看此问题,我在iOS应用程序打开时收到推送通知时遇到问题。当应用程序在后台运行时,它可以完美运行。但是,当应用程序处于打开状态时,它甚至不会触发' push-notification' 事件,该事件应将通知显示为警报消息。
我遵循了这些说明,但做了一些调整: http://www.pushwoosh.com/programming-push-notification/ios/ios-additional-platforms/push-notification-sdk-integration-for-phonegap/
这是我加载页面时的代码:
document.addEventListener("deviceready", pushwooshReady, true);
document.addEventListener("push-notification", displayPushwooshMessage, true);
pushwooshReady 功能:
function pushwooshReady() {
initPushwoosh();
if(device.platform == 'iOS') {
app.receivedEvent('deviceready');
}
}
initPushwoosh 功能:
function initPushwoosh() {
//get the plugin
var pushNotification = window.pushNotification;
if(device.platform == 'iOS') {
//call the registration function for iOS
registerPushwooshIOS();
} else if (device.platform == 'Android') {
//call the registration function for Android
registerPushwooshAndroid();
}
pushNotification.onDeviceReady();
}
这是registerPushWooshIOS函数:
function registerPushwooshIOS() {
var pushNotification = window.pushNotification;
//register for push notifications
pushNotification.registerDevice({alert:true, badge:true, sound:true, pw_appid: PW_appid, appname: PW_appname},
function(status) {
//this is a push token
var deviceToken = status['deviceToken'];
console.warn('registerDevice: ' + deviceToken);
//we are ready to use the plugin methods
onPushwooshiOSInitialized(deviceToken);
},
function(status) {
console.warn('failed to register : ' + JSON.stringify(status));
navigator.notification.alert(JSON.stringify(['failed to register ', status]));
});
//reset badges on application start
pushNotification.setApplicationIconBadgeNumber(0);
}
这是我的 displayPushwooshMessage 功能:
function displayPushwooshMessage(event) {
if(device.platform == 'Android') {
var msg = event.notification.title;
var userData = event.notification.userdata;
if(typeof(userData) != "undefined") {
console.warn('user data: ' + JSON.stringify(userData));
}
alert(msg);
} else if(device.platform == 'iOS') {
var notification = event.notification;
alert(notification.aps.alert);
pushNotification.setApplicationIconBadgeNumber(0);
}
}
非常感谢您的帮助。
答案 0 :(得分:4)
好的,看起来我会再次回答我自己的问题。
我让它工作但没有使用javascript的alert()方法,因为pushwoosh网站上的说明并不适合我。所以我所做的很简单,但是花了一天时间才弄明白,因为我没有任何Objective-C背景。
我在 PushNotificationManager.m 中的 handlePushReceived 函数中注释掉了if语句。这是代码:
NSString *alertMsg = [pushDict objectForKey:@"alert"];
bool msgIsString = YES;
if(![alertMsg isKindOfClass:[NSString class]])
msgIsString = NO;
//if(!isPushOnStart && showPushnotificationAlert && msgIsString) { <- Commented this out
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:self.appName message:alertMsg delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
alert.tag = ++internalIndex;
[pushNotifications setObject:userInfo forKey:[NSNumber numberWithInt:internalIndex]];
[alert show];
return YES;
//} <- Also this one.
[self processUserInfo:userInfo];
它有效。我甚至不知道它为什么不起作用,它来自我下载的SDK。 哦,我不确定是否有人遇到或将会遇到同样的问题,但我希望这个答案能够帮助那些将来会有所帮助的人。
<强> **更新:强>
实际上,错误是不同的,不需要上面的解决方案。我收到了Pushwoosh支持团队的以下回复:
Dmitry Dyudeev(Pushwoosh)
5月29日16:41Hello Clint,
感谢您与我们联系!
事实证明,您在我们的插件中找到了一个错误。谢谢你指出来!我们将在不久的将来更新我们的插件。
同时,由于更新插件需要一些时间,您可以在PushNotification.m文件中找到onDeviceReady方法并在其末尾添加以下行,它将解决问题:
[[NSUserDefaults standardUserDefaults] synchronize];
请告诉我结果!
的问候,
Dmitry Dyudeev
Pushwoosh团队