网络之NSURLConnection
数据库总结完之后,下面来总结下网络这块,写博客的目的是为了让想学习IOS的不用去培训机构就能学习。
//
// ViewController.m
// UrlConnection
//
// Created by City--Online on 15/4/27.
// Copyright (c) 2015年 CYW. All rights reserved.
//
#define imageUrl @"http://assets.sbnation.com/assets/2512203/dogflops.gif"
#import "ViewController.h"
@interface ViewController ()<NSURLConnectionDataDelegate>
{
UIImageView *imageView;
UIActivityIndicatorView *indicatorView;
UIProgressView *progessView;
UILabel *progressLabel;
NSMutableData *imgData;
long long allBytes;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
imgData=[NSMutableData data];
[self initUI];
[self startDownLoadImage];
}
-(void)startDownLoadImage
{
NSURL *url=[NSURL URLWithString:imageUrl];
NSURLRequest *request=[NSURLRequest requestWithURL:url];
// block
// NSOperationQueue *queue=[NSOperationQueue mainQueue];
// [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
// if (data) {
// imageView.image=[UIImage imageWithData:data];
// [indicatorView stopAnimating];
//
// }
// }];
// 代理
[NSURLConnection connectionWithRequest:request delegate:self];
// NSURLConnection *connection=[[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:YES];
// [connection start];
}
//连接失败
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"连接失败");
}
//获得响应
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
imgData.length=0;
//获取文件大小
allBytes=[response expectedContentLength];
//获取文件名
NSString *filename=[response suggestedFilename];
NSLog(@"文件名:%@",filename);
//获取文件类型
NSString *contentType=[response MIMEType];
NSLog(@"文件类型:%@",contentType);
//状态码
NSHTTPURLResponse *httpResponse=(NSHTTPURLResponse*)response;
NSInteger statusCode=[httpResponse statusCode];
NSLog(@"状态码:%ld",statusCode);
//响应头信息
NSDictionary *allHeaderFields=[httpResponse allHeaderFields];
NSLog(@"%@",allHeaderFields);
}
//接收到数据
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
//追加数据
[imgData appendData:data];
//计算进度
CGFloat progress=(CGFloat)imgData.length/allBytes;
progessView.progress=progress;
progressLabel.text=[NSString stringWithFormat:@"%2f",progress];
NSLog(@"%f",progress);
}
//响应完成
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
imageView.image=[UIImage imageWithData:imgData];
[indicatorView stopAnimating];
}
-(void)initUI
{
imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 40, 300, 300)];
//默认图片
imageView.image = [UIImage imageNamed:@"photo"];
[self.view addSubview:imageView];
indicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
indicatorView.frame = CGRectMake(0, 0, 60, 60);
indicatorView.center = CGPointMake(imageView.frame.size.width/2, imageView.frame.size.height/2);
//indicatorView.hidesWhenStopped = NO;
[indicatorView startAnimating];
[imageView addSubview:indicatorView];
//CGRectGetMaxY(imageView.frame) == imageView.frame.origin.y + imageView.frame.size.height
//CGRectGetMaxX(progessLabel.frame) == progessLabel.frame.origin.x + progessLabel.frame.size.width
//进度条
progessView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
progessView.frame = CGRectMake(imageView.frame.origin.x, CGRectGetMaxY(imageView.frame)+20, 200, 20);
[self.view addSubview:progessView];
progressLabel = [[UILabel alloc] initWithFrame:CGRectMake(CGRectGetMaxX(progessView.frame), progessView.frame.origin.y - 10, 80, 20)];
progressLabel.text = @"0.00";
progressLabel.textAlignment = NSTextAlignmentCenter;
[self.view addSubview:progressLabel];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end


网络之NSURLConnection的更多相关文章
- iOS开发网络篇—NSURLConnection基本使用
iOS开发网络篇—NSURLConnection基本使用 一.NSURLConnection的常用类 (1)NSURL:请求地址 (2)NSURLRequest:封装一个请求,保存发给服务器的全部数据 ...
- iOS开发网络篇--NSURLConnection
S简介 NSURLConnection: 作用: 1.负责发送请求,建立客户端和服务器的连接发送数据给服务器 2.并收集来自服务器的响应数据 步骤: 1.创建一个NSURL对象,设置请求路径 2.传入 ...
- 多线程与网络之NSURLConnection发送请求
*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } ...
- 教你如何封装异步网络连接NSURLConnection实现带有百分比的下载
教你如何封装异步网络连接NSURLConnection实现带有百分比的下载 注:本教程需要你对block有着较为深刻的理解,且对如何封装对象有着一些经验. 也许你已经用惯了AFNetworking2. ...
- swift开发网络篇—NSURLConnection基本使用
iOS开发网络篇—NSURLConnection基本使用 一.NSURLConnection的常用类 (1)NSURL:请求地址 (2)NSURLRequest:封装一个请求,保存发给服务器的全部数据 ...
- iOS网络1——NSURLConnection使用详解
原文在此 一.整体介绍 NSURLConnection是苹果提供的原生网络访问类,但是苹果很快会将其废弃,且由NSURLSession(iOS7以后)来替代.目前使用最广泛的第三方网络框架AFNetw ...
- 网络&热恋NSURLConnection代理及GET¥POST请求
1.NSURLConnection代理下载设置在本地的身骑着白马MP3 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional ...
- iOS开发网络篇—NSURLConnection基本使用(一)
一.NSURLConnection的常用类 (1)NSURL:请求地址 (2)NSURLRequest:封装一个请求,保存发给服务器的全部数据,包括一个NSURL对象,请求方法.请求头.请求体.. ...
- Ios之网络编程NSURLConnection
通过NSURLConnection主要通过四个类进行网络访问:NSURL,NSURLRequest,NSMutableURLRequest,NSURLConnection 一.基本知识 (1)NSUR ...
随机推荐
- 创建Pods私有库
Pods私有库创建步骤 创建私有 Spec Repo 创建Pod项目工程文件 创建podspec文件 本地测试podsspec文件 向Spec Repo提交podspec Pod库使用 更新维护pos ...
- sed,grep,进阶+source+export+环境变量
三剑客之sed 概括流程:从文件或管道中,可迭代读取. 命令格式: sed(软件) 选项 sed命令 输入文件 增 两个sed命令: a: 追加文本到指定行后 i: 插入到指定行前 sed -i '1 ...
- java基础梳理
- 201621123018《Java程序设计》第5周学习报告
1. 本周学习总结 1.1 写出你认为本周学习中比较重要的知识点关键词 接口.interface.implements.Comparable.Comparator. 1.2 尝试使用思维导图将这些关键 ...
- 如何在Notepad ++中每两行合并
\n 新行 \r 行首 [^\n]+ 是排除\n外的任意字符 [^\r]+ 是排除\r外的任意字符 用[^\n]或[^\r]都不行..老是匹配到空的东西..原来是这么一回事..用[^\n\r]+就行了 ...
- Jmeter 结构、原理介绍
Jmeter结构.原理介绍 一.Jmeter 简介 1.是基于java语言的开源的应用软件. 2.可以进行接口测试.性能测试.接口及性能的自动化测试. 二.Jmeter体系结构 元件:可以理解为每一个 ...
- Swift 里 Set(四)Testing for Membership
即contains操作 /// - Parameter member: An element to look for in the set. /// - Returns: `true` if `mem ...
- Others - On Duty
On Duty This is xxx and will be duty engineer in the next week. Thanks. Here is a kindly reminder. T ...
- mongodb 初学 意外 连接服务器异常(Connection refused)
啦啦啦 这种情况 root@localhost:/# mongo MongoDB shell version: connecting to: test --31T07:: W NETWORK [thr ...
- jquery中的ajax请求,阻塞ui线程的解决方案(自己总结的demo)
/*****************************************************/ function getAjaxData(url,data){ showLoading( ...