I have a string value.
NSString *myString = @"Latitude:-31.9504140#Longitude:115.8606040";
How can I retrieve the latitude and longitude value from the string and assign it to coordinate
CLLocationCoordinate2D coordinate;
coordinate.Latitude;
coordinate.Longitude;
if your format is same then you can get Latitude and Longitude using below code