dicroce
dicroce

Reputation: 46800

What thread calls the delegate when using iPhone CoreLocation framework?

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?

Upvotes: 2

Views: 534

Answers (1)

John Calsbeek
John Calsbeek

Reputation: 36537

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).

Upvotes: 2

Related Questions