Is there an equivalent of the .NET ManualResetEvent class available for use in Objective-C / Cocoa?
|
|
|
|
|
|
|
I'm not very familiar with ManualResetEvent, but based on the documentation, it looks like the NSCondition class might be what you are looking for. NSCondition is by no means an exact equivalent, but it does provide similar signaling functionality. You might also want to read up on NSLock. |
|||
|
|
|
Ah, those are poor man's condition variables. You could use the You gonna love it. |
||||
|
