티스토리 뷰
728x90
반응형
// AppDelegate.swift
// ...
// ✅ 메시지 수신
extension AppDelegate: UNUserNotificationCenterDelegate {
// ...
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
// ✅ notification 의 payload 속 `recordId` 와 `roomId` 를 가지고 화면전화에서 사용할 수 있습니다.
let userInfo = response.notification.request.content.userInfo
guard let recordId: String = userInfo["recordId"] as? String,
let roomId: String = userInfo["roomId"] as? String else { return }
let info: [String: Any] = ["recordID": recordId, "roomID": roomId]
// 다음과 같이백그라운드를 제외할 수도 있음)
// UIApplication.shared.applicationState 를 사용하여 분기처리를 할 수 있다.
let applicationState = UIApplication.shared.applicationState
if applicationState == .active || applicationState == .inactive {
// ✅ 푸시알림으로 앱을 실행하게 되면 메인 탭바가 등장하도록 설정.
guard let mainTBC = UIStoryboard(name: Const.Storyboard.Name.mainTabBar, bundle: nil).instantiateViewController(withIdentifier: Const.ViewController.Identifier.mainTabBar) as? MainTBC else { return }
// ✅ 메인 탭바로 rootViewController 를 변경.
guard let windowScene = UIApplication.shared.connectedScenes.first as? UIWindowScene else { return }
guard let window = windowScene.windows.first else { return }
window.rootViewController = mainTBC
UIView.transition(with: window, duration: 0.5, options: .transitionCrossDissolve, animations: nil)
// ✅ 0.5초 뒤에 habitRoomVC 로 push 하도록 설정.
guard let habitRoomVC = UIStoryboard(name: Const.Storyboard.Name.habitRoom, bundle: nil).instantiateViewController(withIdentifier: Const.ViewController.Identifier.habitRoom) as? HabitRoomVC else { return }
habitRoomVC.roomID = Int(roomId)
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.5) {
// 가장 위에 있는 view controller 를 가져오는 작업.
let toVC = UIApplication.getMostTopViewController()
topVC?.navigationController?.pushViewController(habitRoomVC, animated: true)
}
completionHandler()
}
// ...
}
- getMostTopViewController()
// UIApplication+Extension.swift
import UIKit
extension UIApplication {
public class func getMostTopViewController(of base: UIViewController? = nil) -> UIViewController? {
var baseVC: UIViewController?
if base != nil {
baseVC = base
} else {
baseVC = (UIApplication.shared.connectedScenes
.compactMap { $0 as? UIWindowScene }
.flatMap { $0.windows }
.first { $0.isKeyWindow })?.rootViewController
}
if let naviController = baseVC as? UINavigationController {
return getMostTopViewController(of: naviController.visibleViewController)
} else if let tabbarController = baseVC as? UITabBarController,
let selected = tabbarController.selectedViewController {
return getMostTopViewController(of: selected)
} else if let presented = baseVC?.presentedViewController {
return getMostTopViewController(of: presented)
}
return baseVC
}
}
728x90
반응형
'iOS > Notification' 카테고리의 다른 글
iOS) iOS 12 Notifications Permission - Provisional 의 도입 시도와 느낀점 (0) | 2022.04.26 |
---|---|
iOS) Notification Service Extension - 푸시알림에 이미지 넣기 (2) | 2022.03.19 |
iOS) Custom Notification Groups - 푸시 알림 그룹화 (0) | 2022.02.26 |
iOS) Generating a Remote Notification - APNs payload 알아보기 (0) | 2022.02.26 |
iOS) APNs(Apple Push Notification Service) - FCM Token 으로 앱에서 메시지 수신하기 (2) | 2022.01.16 |
댓글
TAG
- 2022 KAKAO TECH INTERNSHIP
- rxswift
- Objective-C
- github
- Notification
- WidgetKit
- async/await
- WWDC
- Swift
- RxCocoa
- Algorithm
- OpenSourceLibrary
- projectsetting
- CloneCoding
- APNS
- Widget
- MVVM
- configurable widget
- YPImagePicker
- watchOS
- 서버통신
- UserDefaults
- WWDC22
- MOYA
- IOS
- SwiftUI
- urlsession
- containerBackground
- Protocol
- Firebase
최근에 올라온 글
최근에 달린 댓글
글 보관함
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
링크
- Total
- Today
- Yesterday