iOS/iOS

[iOS, Swift] LocalNotification 기능 모음

검은참깨두유vm 2022. 8. 21. 09:29
반응형

[iOS, Swift] LocalNotification 실행하기

 

[iOS, Swift] LocalNotification 실행하기

iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다. import UserNotifications class ViewController: UIViewController { lazy var button: UIButton = { var button = UIButton(type: .custom) butt..

bksesame.tistory.com

 

[iOS, Swift] LocalNotification Badge 숫자 올리기

 

[iOS, Swift] LocalNotification Badge 숫자 올리기

iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다. let content = UNMutableNotificationContent() content.title = "Noti 연습" content.subtitle = "tistory" content.body = "lorem ipsum ...." c..

bksesame.tistory.com

 

[iOS, Swift] LocalNotification Foreground 알림 받기

 

[iOS, Swift] LocalNotification Foreground 알림 받기

iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다. import UIKit @main class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunch..

bksesame.tistory.com

 

 

 

 

 

 

 

반응형