浏览代码

修复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);
 }