- このバグは時折のみ表示されます xcode のバグは表示されます
exc_breakpoint (コード=exc_i386_bpt、サブコード=0x0)
これはバグのスクリーンショットです:
おまけ:誰かがエラーメッセージを「コピー」する方法を教えていただければ幸いです
即時ウィンドウで、ログには次のように表示されます。
2012-06-04 12:08:17.097 BadgerNew[866:17003] 到達可能性フラグ ステータス:-R ---l- networkStatusForFlags
プロジェクトに関連するコードは、ほぼ確実です。そこにバグがあることに非常に驚いています。
+(NSString *) Json_StringGetter:(NSString *) URL{
CM(@"Json string getter");
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:URL]];
DLog(@"request:%@",request);
PO(URL);
PO(request);
__block NSError *error=nil;
__block NSURLResponse *urlresponse=nil;
__block NSData *response = nil;
__block NSString *json_string=nil;
//[Tools computeTimeWithName:FUNC block:^{
response= [NSURLConnection sendSynchronousRequest:request returningResponse:&urlresponse error:&error];
json_string = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
//}];
if (error) {
DLog(@"error at jsonparser:%@",urlresponse);
DLog(@"error at jsonparser:%@",error);
DLog(@"I break points here");
}
return json_string;
}