Notification Service Extension
- app extension의 기능중 하나로써 수신되는 Remote Notification에 이미지를 넣거나 내용을 수정하는 등의 확장 기능을 제공한다
- Notification Service Extension을 생성하게 되면 UNNotificationServiceExtension 클래스가 프로젝트 내부에 임베드 되는다 해당 클래스를 이용하여 Push Notification이 AppDelegate에서 처리되기전에 Push Notification을 수정한다.
- Push Notification의 페이로드 내부에 "mutable-contnetn" 키가 존재하고 해당 키의 값이 반드시 1 또는 true로 설정되어야 Push가 수정될 수 있다.
- Push Notification으로 전달할 수 있는 데이터 사이즈에 제한이 있으므로 이미지의 경우 URL로 전달하고 Notification Service Extension을 통해 URL 이미지를 가져올 수 있도록 처리한다.
- Notification Service Extension의 Deployment info가 Push를 수신받을 디바이스의 iOS 버전보다 낮음을 꼭 확인하자
Notification Content Extension
- 전달 받은 Push를 펼쳐보기 시에 보여지는 화면을 수정하는 용도로 사용된다
참고
'iOS 🍎 > iOS' 카테고리의 다른 글
translatesAutoresizingMaskIntoConstraints 속성 (0) | 2022.02.23 |
---|---|
Main Run Loop & Update Cycle (0) | 2022.01.24 |
App Extension (0) | 2021.12.06 |
Xcode Target, Project, Workspace (0) | 2021.12.06 |
APNS, Apple Push Notification Service (0) | 2021.12.06 |