转载请注明出处,原文网址:http://blog.csdn.net/m_changgong/article/details/8238093 作者:张燕广
实现的功能:1)演示多线程NSOperation&NSOperationQueue开发;2)子线程中执行下载图片工作,图片下载完成前显示等待框和下载进度条;
关键词:多线程 NSOperation NSOperationQueue 等待框
1、新建视图控制器ViewController(不带xib),作为根视图控制器,通过ViewController的-(void)loadView方法构建UI。
2、新建继承自NSOperation且实现协议NSURLConnectionDelegate的类DownLoadImageTask,DownLoadImageTask.h如下:
#import <Foundation/Foundation.h>
@protocol DownLoadImageDelegate;
@interface DownLoadImageTask : NSOperation<NSURLConnectionDelegate>{
int operationId;
long long totalLength;
BOOL done;
}
@property int operationId;
@property(nonatomic,assign) id<DownLoadImageDelegate>downloadImageDelegate;
@property(nonatomic,retain) NSMutableData *buffer;
@property(nonatomic,retain) NSURLRequest *request;
@property(nonatomic,retain) NSURLConnection *connection;
- (id)initWithURLString:(NSString *)url;
@end
@protocol DownLoadImageDelegate
//图片下载完成的委托
-(void)imageDownLoadFinished:(UIImage *)img;
//更新图片下载进度条的值
-(void