First off, thank God for Joel and Jeff for putting stackoverflow together. I can already see the benefit of people sharing and voting on advice. Enough brown nosing! 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!
|
1
|
|
|
|
|
|
In my delegate callback, I check to see if I'm running in a simulator ( |
||
|
|
|
|
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! |
||
|
|
|
So then there's no better way to test/debug a location tracking application?I'm used to RIM's Simulator and the Sun WTK which both allow you to script a trip to the grocery store so you can track how your application reacts to changes in the location. I suppose this could be mocked and abstracted behind an ObjC protocol. Maybe in another release or two Apple will unlock this ability. |
||
|
|
|
|
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; |
||
|
