我一直在從後臺查殺應用程序。然後推送通知進入,它顯示在我的通知托盤上。當我點擊通知時,我的代碼工作正常。當我沒有點擊通知並簡單地啓動應用程序。我們如何獲得用戶信息通知。我被卡住了。請幫忙。PushNotification無法正常工作
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window=[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
NSDictionary* userInfo =
[launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
NSLog(@"%@",userInfo);
}
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
{
NSLog(@"%@",userInfo);
}
你試過了什麼?你能給我們提供一些代碼嗎? –
你在哪裏碰到?你在做什麼?你沒有正確說明你的問題 – Imran
@Imran當我的應用從背景中消失時,我想要我的通知信息。並且我在沒有點擊通知的情況下啓動應用程序。 –