I am working on such a project where apps do the following things:
- User select a radius (10 meter to 1000 meter) and go to next
viewController
by pressing "Go" button - Here apps Grab users current position and start "region monitoring" based on that current position with selected radius
- If the user cross that certain boundary (10 meter to 1000 meter) then it gives an "ExitRegion" alert message. And start "region monitoring" again based on users new current position. And the apps keep doing this all the time, both foreground and background mode. I manage to do it & it is working perfectly.
Now, Here I monitor one region, after that another one. So the number is actually one. But I know the maximum number of regions one apps can monitored by "Region Monitoring" is 15. Now my question is in this case should I handle this maximum number of region issue or not? If yes, then how?
One more thing I want to add is, there are some solution of it, which is only work for iOS 6 and earlier. So please let me know if there have some solution of handling number of "region" monitored by "RegionMonitoring", based on users current location in iOS7.
It will be a great pleasure to me if one can give the answer or any suggestion to finish my apps required requirements.