实现事件同步 - 信号量的坑

有问题代码:

  
   dispatch_async(self.queue_handleAppear, ^{
        dispatch_semaphore_wait(self.semphore_t, DISPATCH_TIME_FOREVER);
        dispatch_async(dispatch_get_main_queue(), ^{
            NSLog(@"hhh任务:%@ 开始执行",message);
            [currentView makeToast:message duration:interval position:position withFinishBlock:^( BOOL completeRes) {
                if (completeRes) {
                    NSLog(@"hhh任务:%@ 结束执行",message);
                    dispatch_semaphore_signal(self.semphore_t);
                }
            }];
        });
    });
    
    注意: queue_handleAppear是串行队列

正确解决方式:

     dispatch_async(self.queue_handleAppear, ^{
        [self.condition lock];
        dispatch_async(dispatch_get_main_queue(), ^{
            [currentView makeToast:message duration:interval position:position withFinishBlock:^( BOOL completeRes) {
                if (completeRes) {
                    [self.condition unlock];
                }
            }];
        });
    })
全部评论

相关推荐

字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
10-05 11:11
海南大学 Java
投票
理想江南137:感觉挺真诚的 感觉可以试一试
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务