Browse Source

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

Ray Zhang 6 years ago
parent
commit
74bb98a413
1 changed files with 6 additions and 1 deletions
  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);
 }