Преглед на файлове

修复crm 在模拟器下无限循环注册推送的bug

Ray Zhang преди 6 години
родител
ревизия
74bb98a413
променени са 1 файла, в които са добавени 6 реда и са изтрити 1 реда
  1. 6 1
      RedAnt CRM/APEX CRM/APEX CRM/AppDelegate.m

+ 6 - 1
RedAnt CRM/APEX CRM/APEX CRM/AppDelegate.m

@@ -85,7 +85,12 @@
 #pragma mark - Notification
 
 - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
-    [application registerForRemoteNotifications];
+    
+    #if TARGET_IPHONE_SIMULATOR//模拟器
+
+    #elif TARGET_OS_IPHONE//真机
+        [application registerForRemoteNotifications];
+    #endif
     NSLog(@"Fail To Register Remote Notification: %@",error);
 }