码迷,mamicode.com
首页 > 其他好文 > 详细

奇怪的 dispatch_semaphore_wait

时间:2015-07-08 16:47:45      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

在实现线程同步时调用dispatch_semaphore_wait出现崩溃,如图

技术分享

实现代码如下:

@interface DemoClass ()
//...
@property (nonatomic) dispatch_semaphore_t      initSem;
//...
@end

@implementation DemoClass

- (id)init
{
    if (self = [super init])
    {
        //...
        self.initSem = dispatch_semaphore_create(1);
    }
   
    return self;
}

- (void)start
{
     __weak DemoClass *theDemo = self;
     dispatch_async(self.queue, ^{
       
        dispatch_semaphore_wait(theDemo.initSem, DISPATCH_TIME_FOREVER);

        //...
    });
}

最后发现initSem这个属性名称导致崩溃,换了个属性名字后就正常了。怀疑这个属性名字与系统的命名有冲突导致了这种崩溃。还是少以init开头取名字为妙....

奇怪的 dispatch_semaphore_wait

标签:

原文地址:http://my.oschina.net/vimfung/blog/476151

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!