For further actions, you may consider blocking this person and/or reporting abuse
Read next
10 fun facts about Javascript Promises
The Teabag Coder -
Networking Interview Preparation
Shagun Bidawatka -
A Comprehensive Guide to Generating Entity Prefabs at Runtime in Unity ECS
Rathod Ketan -
📅 Day 1: Beginning My Journey from Cloud Engineer to DevOps Engineer 🚀
Mueez Mahimtule -
Top comments (1)
With iOS >= 10, you can show notification banner when app run foreground. To make it, you can add some line code in AppDelegate.m
//Called when a notification is delivered to a foreground app.
-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void ()(UNNotificationPresentationOptions options))completionHandler
{
completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
}
Don't forget, import UserNotification in head:
import
Hope it work with you.