marinofaggiana hace 4 años
padre
commit
9d11a5e539
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      iOSClient/AppDelegate.m

+ 1 - 2
iOSClient/AppDelegate.m

@@ -72,7 +72,6 @@
     // Background Fetch
     [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
 
-    // Initialization List & Array
     self.listProgressMetadata = [NSMutableDictionary new];
     self.listMainVC = [NSMutableDictionary new];
     self.arrayDeleteMetadata = [NSMutableArray new];
@@ -85,7 +84,7 @@
     // Push Notification
     [application registerForRemoteNotifications];
     
-    // Display notification (sent via APNS)
+    // Display notification
     [UNUserNotificationCenter currentNotificationCenter].delegate = self;
     UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
     [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) {