투케이2K

336. (ios/swift5) [iOS 17] UNUserNotificationCenter setBadgeCount 사용해 푸시 알림 뱃지 카운트 초기화 수행 본문

IOS

336. (ios/swift5) [iOS 17] UNUserNotificationCenter setBadgeCount 사용해 푸시 알림 뱃지 카운트 초기화 수행

투케이2K 2023. 10. 2. 13:15

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : SWIFT5

 

[소스 코드]

 

        // -----------------------------------------
        // [SEARCH FAST] : [푸시 알림 뱃지 카운트 초기화]
        // -----------------------------------------
        if #available(iOS 17, *) {
            UNUserNotificationCenter.current().setBadgeCount(0) { error in
                if let error {
                    S_Log._D_(description: S_FinalMsg.LOG_BUG_STATE, data: [String(describing: error.localizedDescription)])
                }
            }
        }
        else {
            UIApplication.shared.applicationIconBadgeNumber = 0
        }
        // -----------------------------------------

 

반응형
Comments