For further actions, you may consider blocking this person and/or reporting abuse
See why 4M developers consider Sentry, “not bad.”
Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.
Read next

Exploring TronJava: The Future of Open Source Blockchain Innovation
Zhang Wei -

Polkadot-Java: Pioneering Open Source Funding and Interoperability in Blockchain
Ahmend Riss -

2025 ChatGPT Case Study: AI Search Framework
Shawn knight -

PEO vs EOR: Professional Employer Organization and Employer of Record Models Compared
Yaryna Kobryn -
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.