For further actions, you may consider blocking this person and/or reporting abuse
Read next
JWT Web Tokens Explained in a Story Format
Gobardan D Reddy -
Facade Pattern
Sota -
📊 Benefits of a historic wait time API: apigee developer portal & Streamlit
adriens -
Lol, I thought I could start 2 blog series while also trying to work full-time AND do Advent of Code. Lmao even.
Christopher Smith -
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.