アプリでプッシュ通知を設定しています。私は方法を持っています:
- (void)application:(UIApplication *)application didReceiveRemoteNotification: (NSDictionary *)userInfo
{
if()
{
//app is in foreground to get here
}
else if()
{
//app is in background and then the notification is clicked, to get here
}
}
アプリの外部での通知のタッチと、アプリでの通知の受信を区別する必要があります。何か助けはありますか?