帮你理解多线程

时间:2014-05-07 21:37:21   收藏:0   阅读:305
static BOOL flag=NO;
    
    
    dispatch_queue_t myQueue=dispatch_queue_create("identifier", NULL);
    
    dispatch_async(myQueue, ^{
        
        for (int i=0; i<10; i++) {
            NSLog(@"%d",i);
        }
        flag=YES;
    });
    
    
    
    
    
    NSLog(@"before");
    
    while (!flag){
        NSLog(@"after");
        
    }
    NSLog(@"after2");
    
    return;

帮你理解多线程,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!