网络之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

 


相关文章
|
数据安全/隐私保护 iOS开发
|
数据安全/隐私保护 iOS开发
iOS开发网络篇—NSURLConnection基本使用
iOS开发网络篇—NSURLConnection基本使用 一、NSURLConnection的常用类 (1)NSURL:请求地址 (2)NSURLRequest:封装一个请求,保存发给服务器的全部数据,包括一个NSURL对象,请求方法、请求头、请求体.... (3)NSMutableURLRequest:NSURLRequest的子类 (4)NSURLConnection:负责发送请求,建立客户端和服务器的连接。
844 0
|
8天前
|
安全 网络安全 数据安全/隐私保护
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字化时代,网络安全和信息安全已成为我们生活中不可或缺的一部分。本文将介绍网络安全漏洞、加密技术和安全意识等方面的知识,并提供一些实用的技巧和建议,帮助读者更好地保护自己的网络安全和信息安全。
|
1天前
|
存储 安全 网络安全
云计算与网络安全:云服务、网络安全、信息安全等技术领域的融合与挑战
随着云计算技术的飞速发展,越来越多的企业和个人开始使用云服务。然而,云计算的广泛应用也带来了一系列网络安全问题。本文将从云服务、网络安全、信息安全等方面探讨云计算与网络安全的关系,分析当前面临的挑战,并提出相应的解决方案。
14 3
|
7天前
|
安全 算法 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在当今数字化时代,网络安全和信息安全已经成为了全球关注的焦点。随着技术的发展,网络攻击手段日益狡猾,而防范措施也必须不断更新以应对新的挑战。本文将深入探讨网络安全的常见漏洞,介绍加密技术的基本概念和应用,并强调培养良好安全意识的重要性。通过这些知识的分享,旨在提升公众对网络安全的认识,共同构建更加安全的网络环境。
|
6天前
|
存储 安全 网络安全
云计算与网络安全:探索云服务、网络安全和信息安全的交汇点
在数字化时代,云计算已成为企业和个人存储、处理数据的关键技术。然而,随着云服务的普及,网络安全问题也日益凸显。本文将深入探讨云计算与网络安全的关系,分析云服务中的安全挑战,并提出相应的解决方案。同时,我们还将介绍一些实用的代码示例,帮助读者更好地理解和应对网络安全问题。
|
9天前
|
安全 算法 网络协议
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字时代,网络安全和信息安全已经成为了我们生活中不可或缺的一部分。本文将介绍网络安全漏洞、加密技术和安全意识等方面的内容,帮助读者更好地了解网络安全的重要性和应对措施。通过阅读本文,您将了解到网络安全的基本概念、常见的网络安全漏洞、加密技术的原理和应用以及如何提高个人和组织的网络安全意识。
|
6天前
|
SQL 安全 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字化时代,网络安全和信息安全已经成为了我们生活中不可或缺的一部分。本文将深入探讨网络安全漏洞、加密技术和安全意识等方面的内容,帮助读者更好地了解网络安全的重要性,并提高自己的网络安全防护意识。通过本文的学习,你将能够了解到网络安全的基本概念、常见的网络安全漏洞、加密技术的应用以及如何提高自己的安全意识。让我们一起来探索这个充满挑战和机遇的领域吧!