1
我在their site上描述的方式將ASIHTTPRequest添加到了我的項目中。現在,我得到了以下錯誤:XCode iOS ASIHTTPRequest:「Apple Mach-O鏈接器(Id)錯誤」
我已經嘗試過readdding框架MobileCoreServives,SystemConfiguration和CFNetwork框架和libz.dylib。我也檢查了多個相似主題的stackoverflow條目,但問題仍然存在。
,我使用ASIHTTPRequest的功能如下:
NSString* getHTMLResponse(){
//Do request
NSString *urlString = [[NSString alloc] initWithString:@"http://google.com"];
urlString = [urlString stringByAppendingString:ean];
NSURL *url = [NSURL URLWithString:urlString];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request startSynchronous];
NSError *error = [request error];
NSString *response = [[NSString alloc] init];
if (!error) {
response = [request responseString];
}
return response;
}
我加了-fno-objc弧標誌所有ASI相關的文件,就像你做了,但3個錯誤仍然存在。 – NthDegree 2012-01-07 15:20:23