Reputation: 4617
I set my application for push notification and all is running fine. But i want that push notification should also show when my application is running. I do-not want to show an alert or pop in my application
Upvotes: 1
Views: 194
Reputation: 54593
There's nothing built-in to iOS that will make push notification popup appears if the app for the notification is currently in the foreground. You need to look at the data you get in the notification and create a UIAlertView
by hand.
Upvotes: 3