Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

closed as not constructive by Nasreddine, Josh Caswell, chris, LittleBobbyTables, bstpierre Oct 25 '12 at 20:39

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.

5 Answers

up vote 15 down vote accepted

Here's a simple, but complete example: http://softpixel.com/~cwright/programming/threads/threads.cocoa.php

and a related StackOverflow question:
http://stackoverflow.com/questions/830218/nsoperation-on-the-iphone

share|improve this answer

Don't forget the official documentation from Apple: Threading Programming Guide

You will find complete explanations and example code.

share|improve this answer

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.

share|improve this answer

A good and short tutorial on NSInvocationOperation is:

http://www.switchonthecode.com/tutorials/loading-images-asynchronously-on-iphone-using-nsinvocationoperation

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.