didReceiveNotificationRequest不走
-
didReceiveNotificationRequest这个方法不走的可能!!!
今天做修改推送声音的设置的时候本来想打印一下didReceiveNotificationRequest这个方法里面的request的数据结构,结果这个方法一直不走,后来才了解到,因为这是两个程序,这个方法肯定不会走到。
可以去AppDelegate里面的- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler这个方法去看服务器传回来的数据结构.
直接操作request数据就可以修改通知内容了。