iOS多线程GCD

Grand Central Dispatch (GCD)是Apple开发的一个多核编程的解决方法。编程

dispatch queue分红如下三种:缓存

1)运行在主线程的Main queue,经过dispatch_get_main_queue获取。并发

复制代码

/*!
* @function dispatch_get_main_queue
*
* @abstract
* Returns the default queue that is bound to the main thread.
*
* @discussion
* In order to invoke blocks submitted to the main queue, the application must
* call dispatch_main(), NSApplicationMain(), or use a CFRunLoop on the main
* thread.
*
* @result
* Returns the main queue. This queue is created automatically on behalf of
* the main thread before main() is called.*/__OSX_AVAILABLE_STARTING(__MAC_10_6,__IPHONE_4_0)
DISPATCH_EXPORT struct dispatch_queue_s _dispatch_main_q;#define dispatch_get_main_queue() \DISPATCH_GLOBAL_OBJECT(dispatch_queue_t, _dispatch_main_q)

复制代码

能够看出,dispatch_get_main_queue也是一种dispatch_queue_t。app

2)并行队列global dispatch queue,经过dispatch_get_global_queue获取,由系统建立三个不一样优先级的dispatch queue。并行队列的执行顺序与其加入队列的顺序相同。async

3)串行队列serial queues通常用于按顺序同步访问,可建立任意数量的串行队列,各个串行队列之间是并发的。函数

当想要任务按照某一个特定的顺序执行时,串行队列是颇有用的。串行队列在同一个时间只执行一个任务。咱们可使用串行队列代替锁去保护共享的数据。和锁不一样,一个串行队列能够保证任务在一个可预知的顺序下执行。oop

serial queues经过dispatch_queue_create建立,可使用函数dispatch_retain和dispatch_release去增长或者减小引用计数。atom

GCD的用法url

复制代码

 
 dispatch_async(dispatch_get_global_queue(, ), ^
 dispatch_async(dispatch_get_main_queue(), ^
 &onceToken, ^
  delayInSeconds = = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds *^(
 dispatch_queue_t urls_queue = dispatch_queue_create(^
 dispatch_group_t group =,), ^,), ^,), ^
 });

复制代码

一个应用GCD的例子:spa

复制代码

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        NSURL * url = [NSURL URLWithString:@"http://www.baidu.com"];
        NSError * error;
        NSString * data = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];        if (data != nil) {
            dispatch_async(dispatch_get_main_queue(), ^{
                NSLog(@"call back, the data is: %@", data);
            });
        } else {
            NSLog(@"error when download:%@", error);
        }
    });

复制代码

GCD的另外一个用处是可让程序在后台较长久的运行。

在没有使用GCD时,当app被按home键退出后,app仅有最多5秒钟的时候作一些保存或清理资源的工做。可是在使用GCD后,app最多有10分钟的时间在后台长久运行。这个时间能够用来作清理本地缓存,发送统计数据等工做。

让程序在后台长久运行的示例代码以下:

复制代码

// AppDelegate.h文件@property (assign, nonatomic) UIBackgroundTaskIdentifier backgroundUpdateTask;// AppDelegate.m文件- (void)applicationDidEnterBackground:(UIApplication *)application
{
    [self beingBackgroundUpdateTask];    // 在这里加上你须要长久运行的代码    [self endBackgroundUpdateTask];
}- (void)beingBackgroundUpdateTask
{
    self.backgroundUpdateTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
        [self endBackgroundUpdateTask];
    }];
}- (void)endBackgroundUpdateTask
{
    [[UIApplication sharedApplication] endBackgroundTask: self.backgroundUpdateTask];
    self.backgroundUpdateTask = UIBackgroundTaskInvalid;
}

复制代码

 

ps:

http://www.jianshu.com/p/0b0d9b1f1f19

http://blog.csdn.net/mayday550/article/details/43987365

相关文章
相关标签/搜索