21 lines
620 B
Swift
21 lines
620 B
Swift
//
|
|
// NotifyDelegate.swift
|
|
// Runner
|
|
//
|
|
// Created by LittleSheep on 2024/12/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class NotifyDelegate: UIResponder, UNUserNotificationCenterDelegate {
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
|
|
if let textResponse = response as? UNTextInputNotificationResponse {
|
|
let userText = textResponse.userText
|
|
print("User replied: \(userText)")
|
|
// Handle the reply text
|
|
}
|
|
|
|
completionHandler()
|
|
}
|
|
}
|