반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let content = UNMutableNotificationContent()
content.title = "Noti 연습"
content.subtitle = "tistory"
content.body = "lorem ipsum ...."
content.badge = (UIApplication.shared.applicationIconBadgeNumber + 1) as NSNumber
UIApplication에서 applicationIconBadgeNumber를 활용한다.
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] UIImage 그라데이션 그리기 (Gradient Image) (0) | 2022.08.21 |
---|---|
[iOS, Swift] LocalNotification Foreground 알림 받기 (0) | 2022.08.21 |
[iOS, Swift] LocalNotification 실행하기 (0) | 2022.08.21 |
[iOS, Swift] UILabel 밑줄긋기(Underline) (0) | 2022.08.20 |
[iOS, Swift] UILabel 텍스트 양쪽 정렬(Justify Text) (0) | 2022.08.20 |