marinofaggiana 4 년 전
부모
커밋
9d11a5e539
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  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) {