Swift version: 5.2
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 Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
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.