iOS 开发常用类

博主姓名:韩俊州

联系方式:QQ: 203423989

此博客创建时间:2015-9-1

 

 一:ASIHTTPRequest

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

ASIHTTPRequest简化了网络通信的一个类,很强大。

  (void) loadAppDevMag

    {

       ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

      [request setDelegate:self];

      [request startAsynchronous];

    }

    - (void)requestFinished:(ASIHTTPRequest *)request

    {

      // Use when fetching text data

      NSString *responseString = [request responseString];

 

二:JSON Framework (JSO支持)

地址:http://stig.github.com/json-framework/

 三:SDWebImage (简化网络图片处理) 

 

地址:https://github.com/rs/SDWebImage

 

四:GData client (iphone上所有Google相关服务的类库)

 地址:https://code.google.com/p/gdata-objectivec-client/

 

 

 

 

posted @ 2015-09-02 17:23  韩俊州  阅读(110)  评论(0)    收藏  举报