Is there a way to clear the remote notification from the notification banner when swiping down from the top of the iPhone screen. I tried setting the badge number to zero:
Swift 4 & 5
import UserNotifications ... ... ... UNUserNotificationCenter.current().removeAllDeliveredNotifications()
any one looking for swift 4 and above code
application.applicationIconBadgeNumber = 0 UNUserNotificationCenter.current().removeAllDeliveredNotifications()