困死了,更完就睡。运行一下有福利,懂的。我这里就不上传效果图了,大家自己运行哈。。。晚安
#import "ViewController.h"
@interface ViewController ()
{
UIImageView *_view;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//主队列是和主线程关联的一个队列,主队列是GCD提供的一个特殊队列, 添加到主队列中的任务,会在主线程中执行。 注意: 往主队列中加任务,不管是同步的方式还是异步的方式,都不会创建线程。
// dispatch_get_main_queue(); 取到主队列的方法
// 开启子线程调用test方法
[self performSelectorInBackground:@selector(test) withObject:nil];
_view = [[UIImageView alloc]init];
_view.frame = CGRectMake(0, 0, self.view.bounds.size.width, 300);
[self.view addSubview:_view];
}
-(void)test
{
dispatch_queue_t queue = dispatch_queue_create("Concurrent Queue", DISPATCH_QUEUE_CONCURRENT);
dispatch_async(queue, ^{
NSLog(@"222 curThread = %@",[NSThread currentThread]);
});
dispatch_sync(queue, ^{
NSLog(@"333 cureThread = %@",[NSThread currentThread]);
});
}
//用户点击屏幕,从网络上下载一张图片,显示到界面上
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
// 1. 取全局队列
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
// 往并行队列中添加下载图片的任务
dispatch_async(queue, ^{
NSLog(@"1111 : curThread = %@", [NSThread currentThread]);
NSURL *url = [NSURL URLWithString:@"http://h.hiphotos.baidu.com/image/pic/item/35a85edf8db1cb13966db40fde54564e92584ba2.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *image = [UIImage imageWithData:data];
// 要求用GCD的方式,在主线程中设置要显示的图片。
// 好处: 在主线程中,可以直接使用子线程中的资源。使用起来方便,直观。
//操作ui在主线程中执行
dispatch_async(dispatch_get_main_queue(), ^{
_view.image = image;
});
});
}
- (void)test11
{
// dispatch_queue_t queue = dispatch_get_global_queue(<#long identifier#>, <#unsigned long flags#>)
dispatch_queue_t queue = dispatch_queue_create("Concurrent Queue", DISPATCH_QUEUE_CONCURRENT);
dispatch_async(queue, ^{
// 做耗时操作
dispatch_async(dispatch_get_main_queue(), ^{
//操作UI界面
});
});
}
@end
原文地址:http://blog.csdn.net/wq820203420/article/details/45032909