How do you set up the AppDelegate and a ViewController to be listeners to a model corelocation class? What are the proper design choices??
I'm interested in having a model class to implement CoreLocation and location updates. I'm guessing this class should be a sharedSingleton, because both my AppDelegate and ViewController wish to access it.
When my viewController calls it, I want the CLLocationManager to use startUpdatingLocation.
When the app goes into background, I want to monitor location updates in the AppDelegate using startMonitoringSignificantLocationChanges.
My question is, how do I set up the model class to handle these different types of location updates, as well as notify the ViewController or AppDelegate that a new location is found? Using NSNotification? Delegation doesn't seem to work because it's a one-to-one relationship.
Appreciate your help on figuring out how to design this.
Thanks!