I just spent the last hour searching - thinking that there has to be an answer - and didn't find much, so I'm asking here.
I'm trying to get the sample app Regions to trigger enter and/or exit regions updates via the simulator. I'm familiar with setting a specific latitude and longitude with Debug > Location > Custom Location but that doesn't seem to do much, although it does seem to work in the LocateMe sample app. At this point I don't know if the problem is a limitation of the iOS Simulator or of the way the sample app handles region detection (I'm still rather new to iOS).
I've come across the FTLocationSimulator
but I wonder if that's going to help (especially since it seems to mimic the ability to set Custom Locations via the Simulator).
There also doesn't seem to be much in terms of Apple documentation regarding the iOS Simulators ability to set Custom Locations.
Add a GPX file to your project and add waypoints to it. When your app is running under simulation use the Simulate Location feature of XCode (the little way-arrow sitting on the debug bar at the bottom) and choose your GPX file. XCode will then start supplying coordinates to your app.
Example GPX file contents:
Note that the simulator will 'connect the dots' between two waypoints (in the example above it will generate locations along a line between Atlanta, Georgia and Lansing, Michigan.
This works for me:
General -> International -> Region Format -> (Choose a region)
Hope this helps!