0
我想parseCrashReport融入我的iOS應用程序,這是我的代碼:ParseCrashReport發送報告問題
- (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
可能是[此鏈接](http://blog.parse.com/learn/introducing-parse-crash -reporting-2 /)支持你 –
謝謝你的鏈接,我回到這個頁面 –
@EdwardAnthony這是版本問題嘗試更新解析SDK – Chlebta