帮你理解多线程

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;
posted @ 2014-06-19 15:21  hrhguanli  阅读(117)  评论(0编辑  收藏  举报