美文网首页
iOS 使用GCD中的dispatch_apply函数

iOS 使用GCD中的dispatch_apply函数

作者: 静守幸福 | 来源:发表于2016-05-23 18:01 被阅读62次

    -(void)iteratorWithApply

    {

    //////////处理数组//////////

    NSArray *arrayM = @[@"1",@"2",@"3",@"4"];

    //获得全局并发队列

    dispatch_queue_t queue = dispatch_get_global_queue(0, 0);

    dispatch_apply(arrayM.count, queue, ^(size_t index) {

    NSLog(@"%@--%@",arrayM[index],[NSThread currentThread]);

    });

    }

    相关文章

      网友评论

          本文标题:iOS 使用GCD中的dispatch_apply函数

          本文链接:https://www.haomeiwen.com/subject/gawarttx.html