Does anyone know how to set the location (as it's picked up in CoreLocation services) in the iPhone Simulator? I've been browsing online docs all day and I can't find an answer. Speak up!
|
feedback
|
|
In my delegate callback, I check to see if I'm running in a simulator ( | |||
feedback
|
|
As of iOS 5, there simulator has a configurable location. Under the Debug menu, the last entry is "Location"; this gives you a sub menu with:
Custom Location lets you enter a Lat/Long value. Bicycle ride, City Run, and Freeway Drive are simulation of a moving location (in Cupertino, of course). Of course, this does nothing to help with debugging for iOS 4 (or earlier); but it's a definite improvement! | |||
|
feedback
|
|
The kind folks at FutureTap have made the FTLocationSimulator available for free at GitHub. It allows you to prepare a test route using for instance Google Earth, and then have the simulator feed these coordinates to your app. I've written a blog post about how to use FTLocationSimulator to easily switch between multiple routes during testing of the location features. | |||
|
feedback
|
|
Better late than never :) I just came across this iSimulate which allows you to send Fake location to the app. The solution is NOT free.
Anyway, i am planning to get this. will update more soon! | |||
feedback
|
|
starting xcode 4.2 you can use predefined locations. | |||||
feedback
|
|
Where you want to set your location? you can use mapkit api to show u location's. see icodeblog.com for more detail on how to use mapkit. Also you can store your desired cordinates just create an object CLLocation2D *location; location.longitude=your desired longitude value; location.latitude=your desired latitude value; | |||
feedback
|