So, when sending a notification to an Android device you can give a tag property:
"notification": {
"title": title,
"body": message,
"sound": sound,
"tag": "STRING_TO_GROUP_NOTIFICATIONS_BY"
}
This groups notifications with the same tag together so that they don't make a mess of the users notifications when there are a lot and only shows the newest one.
This is really useful in say, a chat app, with multiple channels that receive lots of messages so you can group by channel and minimize the amount of noise in the user's notifications.
Anways...
Is there any way to do this with iOS?