ios - Notification center - notification not appearing in notification center when they received on active app -


I am notified that all notifications will be aperited at the notification center, and in my app notification received from the background or when the app is closed Has been presented in the Notification Center Is this my problem? How to add a notification in the Notification Center from the code?

Thank you!

Check if the application is activated if you receive notification

  If ([[UIApplication application] ApplicationState] == UIApplicationStateActive   

If you are active, you can show or use a warning, please use the note to add a message to the information center. Make sure that the user can also remove the app from the Notification Center, as well as not to alert the banner from settings.

Comments