Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a good tutorial on iPhone/Objective-C multithreading? [closed]

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. What is a good link to tutorials with example code?

like image 648
nevan king Avatar asked Jun 17 '09 02:06

nevan king


2 Answers

A simple, but complete example is Multithreading in Cocoa.

And a related Stack Overflow question is NSOperation on the iPhone.

like image 81
Robert Harvey Avatar answered Sep 22 '22 06:09

Robert Harvey


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.

like image 21
Brad Larson Avatar answered Sep 23 '22 06:09

Brad Larson