If I create CLLocationManager, assign it's delegate, and finally tell it to start updating, exactly which thread is calling the delegate? Some system thread?
views:
184answers:
1
+2
A:
Since the documentation doesn't say anything, you can safely assume that the delegate will be called from the run loop (main thread or UI thread, depending on which term you prefer).
John Calsbeek
2009-08-11 21:35:18
well, that would explain the deadlock I experienced then!
dicroce
2009-08-11 23:36:54