I'm a student who is working on an IOS project for school and am supposed to rely entirely on the net and books for my research and desperately need help on the following..
I need to be able to send Longtitude and latitude information by calling a URL. I am able to get location information like this
<-26.20410280,+28.04730510> +/- 5.00m (speed -1.00 mps / course -1.00) @ 9/27/12 11:15:54 AM Singapore Standard Time
but all I want is the lat and long information.
And in my .m file, my calling method looks like this for the moment..
NSURL *url = [NSURL URLWithString:@"http://startechvs.appspot.com/CheckInServlet?
Lat=1.390578&Long=103.894087&Id=1"];
This works for the moment, it simulates the information fed to the url. It also gives an idea on what information I need.
So can anyone please tell me how I can extract out the longitude and latitude to send to the URL?
Thank you for reading this.