博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
imageDownloader
阅读量:6250 次
发布时间:2019-06-22

本文共 2716 字,大约阅读时间需要 9 分钟。

.h

#import <UIKit/UIKit.h>

@protocol imageDownloadDelegate <NSObject>

 

@optional

-(void)imageDownloadWithImage:(UIImage *)image;

 

@end

// 声明一个block 参数类型是UIImage 返回值是void 别名Result

typedef void(^Result)(UIImage *img);

@interface ImageDownload : NSObject

 

#pragma mark - 声明方法  被调用后直接下载

+(void)imageDownloadWithUrlStr:(NSString *)urlStr

                      delegate:(id<imageDownloadDelegate>)delegate;

 

#pragma mark - 声明方法 使用block的方式

+(void)imageDownloadWithUrlStr:(NSString *)urlStr

                        result:(Result)result;

 

@end

 
.m

#import "ImageDownload.h"

 

@implementation ImageDownload

#pragma mark - 实现方法 代理

+(void)imageDownloadWithUrlStr:(NSString *)urlStr

                      delegate:(id<imageDownloadDelegate>)delegate

{

    NSURL *url = [NSURL URLWithString:urlStr];

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue new]autorelease] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {

        UIImage *image = [UIImage imageWithData:data];

        dispatch_sync(dispatch_get_main_queue(),^{

            if (delegate!=nil && [delegate respondsToSelector:@selector(imageDownloadWithImage:)]) {

                [delegate imageDownloadWithImage:image];

            }

        });

    }];

}

#pragma mark - 实现方法  block 方式

+(void)imageDownloadWithUrlStr:(NSString *)urlStr

                        result:(Result)result

{

    NSURL *url = [NSURL URLWithString:urlStr];

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue new]autorelease] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {

        UIImage *image = [UIImage imageWithData:data];

        

        // 回到主线程使用block

        dispatch_sync(dispatch_get_main_queue(), ^{

           // block 调用

            result(image);

        });

    }];

}

 

再去 ViewController 

- (IBAction)buttonAction:(UIButton *)sender

{

    /*

   //

    //1 NSURL

    NSURL *url = [NSURL URLWithString:@""];

    

    //2 NSURLREQUEST

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    

    //3 NSURLConnection

    

    __block ViewController *weakSelf = self;

    [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue new]autorelease] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {

        //4 获取data数据  转为UIImage类型

        UIImage *image = [UIImage imageWithData:data];

        //5 回到主界面 刷新数据

        dispatch_sync(dispatch_get_main_queue(),^{

            weakSelf.imageView.image = image;

        });

    }];

     */

    // 直接发送消息 设置代理

    // [ImageDownload imageDownloadWithUrlStr:@"" delegate:self];

    

    // 使用block

    __block ViewController *weakSelf = self;

    [ImageDownload imageDownloadWithUrlStr:@"http://img4.duitang.com/uploads/item/201208/10/20120810091225_hvA2r.thumb.700_0.jpeg" result:^(UIImage *img)

     {

         // 将block中参数显示到UIImageView上

         weakSelf.imageView.image = img;

     }];

 

}

 

@end

 

转载于:https://www.cnblogs.com/masami521/p/4724364.html

你可能感兴趣的文章
电脑系统丢失MAC地址导致无法上网的解决办法
查看>>
martian source packets(ll header)
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
VMware vSphere升级笔记
查看>>
sed 学习
查看>>
想要成功,请记住!
查看>>
解决Div自适应高度的方法(转)
查看>>
细数国外的你必须要知道的远程工作平台
查看>>
判断一个程序是c++编译还是c编译
查看>>
(20120722)(笔记001)android开发基础
查看>>
window.opener=null 不需确认就能关闭窗口
查看>>
Spring4-松耦合实例
查看>>
封装方法实现react更新元素示例
查看>>
windows 2003 IIS 配置支持 CGI
查看>>
mysql 多线程写入后查询丢失数据的一个bug
查看>>
SQLIOSim 模拟SQLServer的行为来测试IO性能
查看>>
更改activity组件切换的动画
查看>>
周鸿祎在360新员工入职培训上的讲话
查看>>
网页基础编程第十章
查看>>