How to pause an NSThread until notified?

时光总嘲笑我的痴心妄想 提交于 2019-11-26 16:16:33

问题


I have a worker thread that I want to do one bit of its task, then pause & wait for the "ok, continue" command from another thread, then pause & wait, etc.

The use case is: the controlling object is a view that I want to display information about what's going on inside the worker-thread, and allow me to "single-step" through the worker as it does it's thing.

The rather ugly and heavy-handed thing that I have in my worker is this:

NSLog(@"paused");
paused = YES;

while (paused)
{
    [NSThread sleepForTimeInterval:0.25];
}
NSLog(@".. continuing");

...But I can't help but think that there must be a nicer way, perhaps involving NSLocks, or some such.

Comments, hints suggestions?

Thanks!


回答1:


Look into NSCondition and the Conditions section in the Threading guide. The code will look something like:

NSCondition* condition; // initialize and release this is your app requires.

//Worker thread:
while([NSThread currentThread] isCancelled] == NO)
{
    [condition lock];
    while(partySuppliesAvailable == NO)
    {
        [condition wait];
    }

    // party!

    partySuppliesAvailable = NO;
    [condition unlock];
}

//Main thread:
[condition lock];
// Get party supplies
partySuppliesAvailable = YES;
[condition signal];
[condition unlock];


来源:https://stackoverflow.com/questions/1557070/how-to-pause-an-nsthread-until-notified

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!