I\'m not getting any location callbacks on either sim or device. I\'ve got this code being called:
- (void)startLocationCallbacks: (NSObject*) ignore
{
loc
Actually you can run it from another thread as well. From Apple documentation:
Configuration of your location manager object must always occur on a thread with an active run loop, such as your application’s main thread.
Just make sure your run loop is running on that thread, and the CLLocationManager events are dispatched. More about run loop: https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Multithreading/RunLoopManagement/RunLoopManagement.html