ParseCrashReport 发送报告问题

ParseCrashReport sending reports issue

我正在尝试将 parseCrashReport 集成到我的 ios 应用程序中,这是我的代码:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    //Setting status Bar to White color
    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

    [ParseCrashReporting enable];
    [Parse setApplicationId:@"......"
                  clientKey:@"......"];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [NSException raise:NSGenericException format:@"Everything is ok. This is just a test crash."];
    });

}

当我在崩溃后重新启动我的应用程序时,没有任何内容发送到服务器,而且我在解析服务器中找不到崩溃报告。我正在使用 Parse 1.7.2

此问题与解析版本有关,已在更高版本中修复