Swift version: 5.6
Once your app has the user’s permission to do so, you can show numbers over your icon to indicate outstanding tasks, unread messages, game invites, or whatever makes sense for your app.
You do need to get their permission, though, so you should start by adding an import for the UserNotifications framework, then request permission with code like this:
UNUserNotificationCenter.current().requestAuthorization(options: .badge) { (granted, error) in
if error != nil {
// success!
}
}
Once you have that permission – anywhere inside the // success!
comment or at some point afterwards – you can place an integer badge of your app icon with one line of code:
UIApplication.shared.applicationIconBadgeNumber = 1
SPONSORED In-app subscriptions are a pain. The code can be hard to write, hard to test, and full of edge cases. RevenueCat makes it straightforward and reliable so you can get back to building your app.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 2.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.