For further actions, you may consider blocking this person and/or reporting abuse
Read next
System Design 15 - Real-Time Collaboration Systems: Syncing Minds, One Keystroke at a Time
Sarva Bharan -
Backtracking in Sudoku Solvers
SRI SAKTHI B CSBS -
Conquering the Chessboard: Solving the N-Queens Problem
SRIVIGNESH S CCE -
N-Queens Problem: The Puzzle That Teaches Problem-Solving
Pavithra easwaran -
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.