I'm just starting to use multithreading and was looking for a good explanation. I'm not sure if there are differences in how multithreading works on Macs and iPhones. Does anyone have a good link to tutorials with example code?
Thanks.
|
I'm just starting to use multithreading and was looking for a good explanation. I'm not sure if there are differences in how multithreading works on Macs and iPhones. Does anyone have a good link to tutorials with example code? Thanks. |
|||
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here's a simple, but complete example: http://softpixel.com/~cwright/programming/threads/threads.cocoa.php and a related StackOverflow question: |
|||
|
|
|
Don't forget the official documentation from Apple: Threading Programming Guide You will find complete explanations and example code. |
|||
|
|
|
Once again, if I may promote my iPhone development course, I had a class devoted to multithreading last semester, covering basic threading, locking, dealing with the UI on the main thread, and NSOperationQueues, for which the class notes can be found here. This fall semester that same class will be dominated by Grand Central Dispatch. The video for the class can be downloaded for free from iTunes U. |
|||
|
|
|
A good and short tutorial on NSInvocationOperation is: |
|||
|
|