views:

184

answers:

1

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?

+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
well, that would explain the deadlock I experienced then!
dicroce