I have a Cocoa interface. When I press a button I want to process some data, but I want to keep using the interface while it's working. I guess the only solution is NSThread. Now will there be a locking mechanism preventing me from returning from an IBAction method if it spawns a thread?
feedback
|
|
No, there is no locking mechanism. The new thread will start and the current thread will continue. You may want to look at | ||||
|
feedback
|
|
Take a look at
| |||||
feedback
|
|
Don't know much about cocoa, but starting a new thread for processing something in background while keeping the UI thread free for taking user inputs(and thus preventing UI from freezing) is the most widely used technique for the problem you have mentioned.Both threads will work together (concurrently) and the programmer has to take care of the synchronization issues if any.You should go ahead with the technique without doubt. Thanks, Sourabh | |||
|
feedback
|