1
在我的應用程序中,我使用了推送通知服務,但我的問題是,當我關閉應用程序時,通知出現,但是當我打開應用程序,然後發送通知通知不來。請幫幫我。如何檢測應用程序打開時的推送通知
在我的應用程序中,我使用了推送通知服務,但我的問題是,當我關閉應用程序時,通知出現,但是當我打開應用程序,然後發送通知通知不來。請幫幫我。如何檢測應用程序打開時的推送通知
可以容易被你的appDelegate.m
---實現application:didReceiveRemoteNotification:
實例下提到這個功能處理: -
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
UIApplicationState appState = [application applicationState];
if (appState == UIApplicationStateActive)
{
UIAlertView *alertVw = [[[UIAlertView alloc] initWithTitle:@"Notify" message:yourMessage delegate:self cancelButtonTitle:@"Done" otherButtonTitles: @"vizllx", nil] autorelease];
[alertVw show];
}
else {
// Push Notification received while app is in background
}
}