If I have two (or more) UILcalNotifications that fire more or less on the same time and the application is active in the background, I found out that:
- Two alerts are shown simultaneously to the user, one covering the other.
- When the user touches "View" on the top alert, the alert is removed from the screen, didReceiveLocalNotification is called for this notification, and the application enters the foreground.
- As soon as the top alert is removed from the screen (and the application is already in the foreground), the user sees the alert that was under it.
- However, if the user touches "View" for this alert as well, nothing happens. didReceiveLocalNotification is not called for the second notification, and the application has no way of knowing that the user wanted to view this notification as well.
If the application happens to be in the foreground when the two notifications fire, there's no problem - didReceiveLocalNotification is called for both, one after the other (no alert is shown in this case).
Is there a way to get some notification for both "View" confirmations in the above case? Am I doing something wrong?