For further actions, you may consider blocking this person and/or reporting abuse
Read next

Letters App using Flutter SDK for iOS - MongoDB Atlas Hackathon 2022
Amey Sunu -

Embedding Python interpreter inside a MacOS app (and iOS app), and publish to the App Store successfully.
Eldar E. -

New React Native Template 2023 for start new app. I choice it
bonnguyenitc -

Directing Turbo Native apps from the server
Ayush Newatia -
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.