iOS 网络编程
文章平均质量分 82
Crayondeng
这个作者很懒,什么都没留下…
展开
-
iOS 网络编程(HTTP 同步GET请求,同步POST请求,异步GET请求,异步POST请求)
下面首先介绍一下一些基本的概念---同步请求,异步请求,GET请求,POST请求。1、同步请求从因特网请求数据,一旦发送同步请求,程序将停止用户交互,直至服务器返回数据完成,才可以进行下一步操作。也就是说同步就意味着阻塞线程,在同步请求过程中主线程中不响应其他事件直到同步请求结束。2、异步请求就不会阻塞主线程,而会建立一个新的线程来操作,用户发出异步请求后,依然可以进行其他操作,程序可以继原创 2013-04-15 20:51:52 · 11412 阅读 · 1 评论 -
iOS 网络请求接收数据流程 (NSURLRequest&NSURLConnection)
网络编程中一般都是经过 请求---》连接---》响应 (request --》 connection --》 response)这个过程。一般的步骤是这样的:1、先创建一个NSURL。2、通过这个指定的URL创建NSURLRequest,这里还可以指定缓存策略和超时时间。3、根据你的request创建NSURLConnection,并对你的connection进行响应原创 2013-04-15 19:37:35 · 5946 阅读 · 0 评论 -
iOS网络编程 ASIHTTPRequest 详解, http 请求终结者
ASIHTTPRequest是一款极其强劲的HTTP访问开源项目。让简单的 API 完成复杂的功能,如:异步请求,队列请求,GZIP压缩,缓存,断点续传,进度跟踪,上传文件,HTTP认证在新的版本中,还加入了Objective-C闭包Block的支持,让我们的代码更加轻简灵活。下面就举例说明它的API用法。发起一个同步请求同步意为着线程阻塞,在主线程中使用此方法会使转载 2013-04-15 21:28:16 · 2327 阅读 · 0 评论 -
ASIHTTPRequest学习 (一)
ASIHTTPRequest框架是优秀的第三方Objective-C的HTTP框架,支持Mac OS X和iOS下的HTTP开发。一、ASIHTTPRequest框架的安装和配置(1)首先要在项目工程中导入相关的文件,包括:ASIHttpRequest文件夹和Reachability文件夹。(2)要导入相关的支持类库和框架。包括:CFNetwork.framework原创 2013-04-29 18:42:46 · 2168 阅读 · 0 评论 -
iOS7 Networking with NSURLSession: Part 3
In the previous tutorials, we explored the fundamentals of the NSURLSession API. There is one other feature of the NSURLSession API that we haven't look into yet, that is, out-of-process uploads a翻译 2014-02-12 15:02:20 · 3476 阅读 · 1 评论 -
iOS7 Networking with NSURLSession: Part 1
From a developer's perspective, one of the more significant changes in iOS 7, and OS X Mavericks for that matter, is the introduction of NSURLSession. Even thoughNSURLSession may seem daunting at fi翻译 2014-02-08 18:03:01 · 4599 阅读 · 0 评论 -
iOS7 Networking with NSURLSession: Part 2
In the previous tutorial, I introduced you to NSURLSession. I talked about the advantages it has over NSURLConnection and how to use NSURLSession for simple tasks, such as fetching data from a w翻译 2014-02-08 23:10:31 · 4030 阅读 · 0 评论 -
iOS7 Networking with NSURLSession: Part 4
In the previous tutorial, we started creating a simple podcast client to put what we've learned about NSURLSession into practice. So far, our podcast client can query the iTunes Search API, download翻译 2014-02-13 20:18:15 · 3517 阅读 · 1 评论