ASIHttpRequest(HTTP Network库)

来源:互联网 发布:淘宝客返利管理 编辑:程序博客网 时间:2024/05/05 14:45

地址:http://allseeing-i.com/ASIHTTPRequest/

iPhone当然也有自己的HTTP Network API,那为什么要用ASIHttpRequest呢?因为官方的API简直跟话痨似的,太罗嗦了!ASIHttpRequest库极大的简化了网络通 信,提供更先进的工具,什么文件上传工具,重定向处理工具、验证工具、等等。只要你手头的东西跟HTTP有关,用这个绝对能让你感觉道生活有美好!先看一 段代码就体会到了。

  1. (void) loadAppDevMag    
  2. {    
  3.    NSURL *url = [NSURL URLWithString:@"http://www.appdevmag.com"];    
  4.    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];    
  5.    [request setDelegate:self];    
  6.    [request startAsynchronous];    
  7. }    
  8.     
  9. - (void)requestFinished:(ASIHTTPRequest *)request    
  10. {    
  11.    // Use when fetching text data    
  12.    NSString *responseString = [request responseString];    
  13. }