일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Human interface guide
- 리펙토링
- Xcode
- HIG
- combine
- UICollectionView
- 리팩토링
- map
- 클린 코드
- UITextView
- MVVM
- Protocol
- swiftUI
- ribs
- 리펙터링
- Clean Code
- tableView
- swift documentation
- 스위프트
- 애니메이션
- rxswift
- clean architecture
- Observable
- Refactoring
- ios
- collectionview
- uitableview
- SWIFT
- uiscrollview
- RxCocoa
- Today
- Total
목록local notification (2)
김종권의 iOS 앱 개발 알아가기
1. Local Notification (로컬 푸시, 로컬 노티) - 사용 방법 2. Local Notification (로컬 푸시, 로컬 노티) - badge (뱃지) 숫자 처리, 딥링크 처리 * 1번 까지 진행한 노티 코드: https://github.com/JK0369/ExLocalPush1 Badge 숫자 처리 로컬 푸시의 뱃지는 수동으로 처리 // iOS 13 이하나 SceneDelegate가 없는 경우 func applicationDidBecomeActive(_ application: UIApplication) { UIApplication.shared.applicationIconBadgeNumber = 0 } // iOS 13 이상, SceneDelegate가 존재할 때 func sceneWi..
1. Local Notification (로컬 푸시, 로컬 노티) - 사용 방법 2. Local Notification (로컬 푸시, 로컬 노티) - badge (뱃지) 숫자 처리, 딥링크 처리 권한 요청 시스템 권한은 보통 info.plist에 하지만, 푸시는 특별하게 코드에서 요청 UNUserNoitificationCenter.current() 싱글톤으로 접근 import UIKit import UserNotifications @main class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [..