is there any means to check significant location change in simulator instead of GPS updates
            Asked
            
        
        
            Active
            
        
            Viewed 1,190 times
        
    3 Answers
4
            
            
        You can do it by using the simulator's 'Free Drive' option.
Once you have your code setup for monitoring significant location updates, do the following:
- Select your simulator
- Select Debug -> Location -> Free Drive
- Add a breakpoint to CLLocationManager's didUpdateLocationsdelegate method to catch updates
2
            You can use something like this https://github.com/futuretap/FTLocationSimulator. Or modify it to better fill your needs.
Edit
(I'm one of the authors:) https://github.com/Azoft/FakeGPSUtility - this project can be helpful too.
 
    
    
        Timur Kuchkarov
        
- 1,155
- 7
- 21
1
            
            
        Select iPhone Simulator--> Select Debug from menu ---> set Location.
You can also give custom location by filling longitude and latitude values.
 
    
    
        Aman Aggarwal
        
- 3,754
- 1
- 19
- 26
- 
                    This won't simulate a significant-change event. – AshHimself Nov 23 '16 at 13:46
 
     
    