일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리펙터링
- map
- Xcode
- Human interface guide
- HIG
- Clean Code
- 리펙토링
- tableView
- rxswift
- UICollectionView
- swiftUI
- 클린 코드
- uitableview
- Protocol
- MVVM
- ribs
- clean architecture
- collectionview
- uiscrollview
- ios
- UITextView
- 애니메이션
- Refactoring
- combine
- swift documentation
- RxCocoa
- 리팩토링
- 스위프트
- SWIFT
- Observable
- Today
- Total
목록notification (4)
김종권의 iOS 앱 개발 알아가기
1. Push Notification 응용 - 테스트 방법 (Pusher, APNs) 2. Push Notification 응용 - Silent Push Notification (사일런트 푸시, 푸시를 이용한 백그라운드에서 업데이트 방법) 3. Push Notification 응용 - Rich Push Notification (Notification Service Extension, 푸시 내용 변경하여 띄우기) New > Target Notification Service Extension 선택 옆에 Content Extension은 시스템 푸시의 UI를 변경할 때 사용 생성 완료 NotificationService로 APNs 푸시 가로채서 title, subtitle 내용 변경하여 띄우기 위에서 만든 N..
푸시 설정 설정앱에서 푸시 세팅한 것을 코드에서 알아내는 방법? 푸시 설정을 바꾸었을때는 바로 알 수 없고, 해당 앱의 foreground에 진입했을때 확인이 가능 AppDelegate에서 NotificationCenter를 통해 foreground 상태를 구독하고, 이 안에서 체크 * NotificationCenter 개념은 이전 포스팅 글 참고 @main class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool ..
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..
알림 앱 이름이나 아이콘을 따로 포함하지 않아도, 시스템에서 각 알림 상단에 이 정보를 자동으로 표출 알림을 보완하기 위해 소리 제공 - UNNotificatinoSound 알림 세부 정보 보기에 4개의 작업 단추가 포함될 수 있고, 앱을 열 필요가 없는 시간 절약 작업을 수행할수 있도록 제공 * 참고 https://developer.apple.com/design/human-interface-guidelines/ios/system-capabilities/notifications/