How to reset the Badge app icon number?

Jaheny

I integrated the Push Notification to the CloudKit so that every change in the iCloud will pop up a notification on my iPhone and the badge app icon number will add one correspondingly. However, when I used the code:

application.applicationIconBadgeNumber = 0

to reset that number in the applicationDidBecomeActive(_ application: UIApplication), I noticed that the badge app icon number truly disappeared but if another new notification came again, the number won't start from one again as supposed but just add one to the original total number before the reset. Therefore the number is getting bigger and bigger. I wonder how to solve this problem?

Jaheny

I find that I should not only set the application side like:

UIApplication.sharedApplication().applicationIconBadgeNumber = 0

but I should also set the iCloud side in CKContainer. Therefore, the complete code is like below:

let operation = CKModifyBadgeOperation(badgeValue: 0)
operation.modifyBadgeCompletionBlock = {(error) in
    if let error = error{
        print("\(error)")
        return
    }
    application.applicationIconBadgeNumber = 0
}
CKContainer.default().add(operation)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Reset badge on app icon from push

From Dev

Reset iOS app badge

From Dev

Reset iOS app badge

From Dev

Update iOS icon badge number

From Dev

How to clear badge counter on click of app icon in iphone?

From Dev

how can i put badge icon within the app in menu bar?

From Dev

How to align badge on top of icon

From Dev

How to bring the app badge number to 0? (Using parse and swift)

From Dev

When to update icon badge number in iOS?

From Dev

Badge icon partially disappearing when number is < 1

From Dev

Swift Icon badge number exclamation mark

From Dev

Phonegap PushPlugin reset badge after opening app

From Dev

Phonegap PushPlugin reset badge after opening app

From Dev

Add badge to app icon in iOS 8 with Swift

From Dev

Add unread notification badge on android app icon

From Dev

Wrong app icon on push notification badge iphone

From Dev

Show Badge count on App icon in Android

From Dev

Add unread notification badge on android app icon

From Dev

How to get a "new email" counter/badge to the Evolution app icon on Ubuntu Dock?

From Dev

Android - how to add a badge count to an application icon?

From Dev

How to find out the Icon Badge count?

From Dev

Android Badge number on launcher icon for all mobile manufacturer

From Dev

Does setting icon badge number locally require user permission in iOS?

From Dev

Android - Auto update app icon badge counter from content provider?

From Dev

Push notification in-app badge icon not updating when clicking on app icon

From Dev

How to update the badge number in IOS push notification?

From Dev

How to increase badge number when application is in background

From Dev

How to add a notification badge/count to application icon on Sony Xperia devices?

From Dev

How to add a notification badge/count to application icon on Sony Xperia devices?

Related Related

  1. 1

    Reset badge on app icon from push

  2. 2

    Reset iOS app badge

  3. 3

    Reset iOS app badge

  4. 4

    Update iOS icon badge number

  5. 5

    How to clear badge counter on click of app icon in iphone?

  6. 6

    how can i put badge icon within the app in menu bar?

  7. 7

    How to align badge on top of icon

  8. 8

    How to bring the app badge number to 0? (Using parse and swift)

  9. 9

    When to update icon badge number in iOS?

  10. 10

    Badge icon partially disappearing when number is < 1

  11. 11

    Swift Icon badge number exclamation mark

  12. 12

    Phonegap PushPlugin reset badge after opening app

  13. 13

    Phonegap PushPlugin reset badge after opening app

  14. 14

    Add badge to app icon in iOS 8 with Swift

  15. 15

    Add unread notification badge on android app icon

  16. 16

    Wrong app icon on push notification badge iphone

  17. 17

    Show Badge count on App icon in Android

  18. 18

    Add unread notification badge on android app icon

  19. 19

    How to get a "new email" counter/badge to the Evolution app icon on Ubuntu Dock?

  20. 20

    Android - how to add a badge count to an application icon?

  21. 21

    How to find out the Icon Badge count?

  22. 22

    Android Badge number on launcher icon for all mobile manufacturer

  23. 23

    Does setting icon badge number locally require user permission in iOS?

  24. 24

    Android - Auto update app icon badge counter from content provider?

  25. 25

    Push notification in-app badge icon not updating when clicking on app icon

  26. 26

    How to update the badge number in IOS push notification?

  27. 27

    How to increase badge number when application is in background

  28. 28

    How to add a notification badge/count to application icon on Sony Xperia devices?

  29. 29

    How to add a notification badge/count to application icon on Sony Xperia devices?

HotTag

Archive