소스 검색

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