I’m wondering what the repercussions are of instantiating ESTBeaconManager in AppDelegate AND again in a ViewController. I want to have background processing for didEnterRegion (via AppDelegate)…but also in a specific view controller (while that view is visible) I want the ability to determine the closes beacon to allow the user to save that beacon’s major/minor for later purposes.
Should I use didEnterRegion and didExitRegion in my AppDelegate to write to a global variable that my VC looks at? Or is it ok to instantiate a second ESTBeaconManager object to do it all in my VC (in addition to the App Delegate). I assume the former (just once in the App Delegate), but wanted to see what the community thinks. Thanks!