瀏覽代碼

add comment about .provisional

B. Petersen 3 年之前
父節點
當前提交
6a5d0589d3
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      deltachat-ios/AppDelegate.swift

+ 4 - 0
deltachat-ios/AppDelegate.swift

@@ -247,6 +247,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
         notifyToken = nil
 
         // register for showing notifications
+        //
+        // note: the alert-dialog cannot be customized, however, since iOS 12,
+        // it can be avoided completely by using `.provisional`,
+        // https://developer.apple.com/documentation/usernotifications/asking_permission_to_use_notifications
         UNUserNotificationCenter.current()
           .requestAuthorization(options: [.alert, .sound, .badge]) { [weak self] granted, _ in
             if granted {