gpt4 book ai didi

objective-c - exc_breakpoint 在调试中是什么意思?

转载 作者:技术小花猫 更新时间:2023-10-29 10:53:54 24 4
gpt4 key购买 nike

<分区>

  • 这个错误只是偶尔出现xcode 中的错误显示

exc_breakpoint (code=exc_i386_bpt, subcode=0x0)

这是漏洞的截图: enter image description here

奖励:如果有人能告诉我如何“复制”错误消息,我将不胜感激

在立即窗口中,日志显示:

2012-06-04 12:08:17.097 BadgerNew[866:17003] Reachability Flag Status:-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;
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com