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 3
In your AppDelegate.swift file under didFinishLaunchingWithOptions add:
AppDelegate.swift
didFinishLaunchingWithOptions
application.applicationIconBadgeNumber = 0
On the launch of your app this will remove the iOS badge (red circle at the top right corner of the app icon).