一网通办ios
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

23 行
756 B

  1. //
  2. // delegate.swift
  3. // im-client-ios
  4. //
  5. // Created by 北京居家科技有限公司 on 2022/2/24.
  6. //
  7. import UserNotifications
  8. extension AppDelegate:UNUserNotificationCenterDelegate{
  9. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  10. }
  11. func userNotificationCenter(_ center: UNUserNotificationCenter, openSettingsFor notification: UNNotification?) {
  12. }
  13. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  14. }
  15. }