For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Monty Harper -
Peter Iakovlev -
Peter Iakovlev -
Ceri-anne -
Once suspended, vominhhuy will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, vominhhuy will be able to comment and publish posts again.
Once unpublished, all posts by vominhhuy will become hidden and only accessible to themselves.
If vominhhuy is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Code Better #Sofast.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag vominhhuy:
Unflagging vominhhuy will restore default visibility to their posts.
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.