Parcourir la source

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

Ray Zhang il y a 6 ans
Parent
commit
74bb98a413
1 fichiers modifiés avec 6 ajouts et 1 suppressions
  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);
 }