[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
'iOS > iOS' 카테고리의 다른 글
[iOS, Swift] UIGesture 기능 모음 (0) | 2022.08.25 |
---|---|
[iOS, Swift] UIView 기능 모음 (0) | 2022.08.21 |
[iOS, Swift] UIImageView 기능 모음 (0) | 2022.08.21 |
[iOS, Swift] UILabel 속성 모음 (0) | 2022.08.20 |
[iOS, Swift] 초기 프로젝트 세팅 (MVC, UIKit) (0) | 2022.06.02 |