|
12345678910111213141516171819202122 |
- //
- // delegate.swift
- // im-client-ios
- //
- // Created by 北京居家科技有限公司 on 2022/2/24.
- //
- import UserNotifications
-
- extension AppDelegate:UNUserNotificationCenterDelegate{
-
- func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
-
- }
-
- func userNotificationCenter(_ center: UNUserNotificationCenter, openSettingsFor notification: UNNotification?) {
-
- }
-
- func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
-
- }
- }
|