일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- UIKit
- 라이브러리
- PyQt
- PyQt5
- UITableView
- Swift
- alamofire
- 개발
- ios
- UIButton
- graph
- 어플리케이션
- Storyboard
- Xcode
- modal
- ui
- Chart
- charts
- cocoapods
- 그래프
- library
- androidstudio
- Android
- TableView
- Python
- kotlin
- 개발자
- button
- Apple
- Chrats
Archives
- Today
- Total
Jiwift
[iOS/Swift] FCM(Firebase Cloud Messaging) Topic(주제) 구독 해제 본문
반응형
// FCM Import
import FirebaseMessaging
Messaging.messaging().unsubscribe(fromTopic: "FCM TOPIC NAME") { error in
if let error = error {
print("토픽 구독 해제 실패: \(error.localizedDescription)")
} else {
print("토픽 구독 해제 성공 : FCM TOPIC NAME")
}
}
fromTopic 자리에 구독한 Topic 이름 입력으로 구독해제 가능.
[iOS/Swift] FCM(Firebase Cloud Messaging) - Topic(주제)를 구독하고 메세지 받기 (tistory.com)
반응형
'라이브러리 > Firebase' 카테고리의 다른 글
[iOS/Swift] Firebase Auth 로그인 여부 확인 코드 (0) | 2023.10.17 |
---|---|
[iOS/Swift] Firebase Auth 로그인 예제 코드, 애플 로그인, 구글 로그인, 이메일 로그인 (0) | 2023.10.05 |
[iOS/Swift] FCM(Firebase Cloud Messaging) Topic(주제)를 구독하고 메세지 받기 (0) | 2023.06.13 |
[iOS/Swift] FCM(Firebase Cloud Messaging) 메세지 전송 (0) | 2023.02.04 |
[iOS/Swift] FCM(Firebase Cloud Messaging) 키 등록 (0) | 2023.02.04 |