How to clear push notification badge count in iOS?

前端 未结 5 2374
挽巷
挽巷 2020-12-14 00:09

I want to clear the push notification badge count once app is launched.Im not clear where to set the below code.Please give brief description about clearing the badge count.

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-14 00:29

    in swift 3+

    in your AppDelegate.Swift , when your application active clear all like below.

    func applicationDidBecomeActive(_ application: UIApplication) {
        UIApplication.shared.applicationIconBadgeNumber = 0
    }
    

提交回复
热议问题