Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two strings representing latitude and longitude like: "-56.6462520", and i want to assign then to a CLLocation object to compare to my current location.I tried the following code but i get erros only:

    CLLocation * LocationAtual = [[CLLocation alloc]init];
    LocationAtual.coordinate.latitude = @"-56.6462520";
    LocationAtual.coordinate.longitude = @"-36.6462520";

and then compare the object with my atual location latitude and longitude. Any sugestions?

share|improve this question

2 Answers

up vote 6 down vote accepted

I think you need to:

LocationAtual.coordinate.latitude = [@"-56.6462520" floatValue];
LocationAtual.coordinate.longitude = [@"-36.6462520" floatValue];
share|improve this answer
I got the point, i think the conversion is correct, but im getting this error: "Lvaule required as left operand of assignment"... – Vinicius Albino Oct 26 '11 at 19:45
1  

No, the chosen answer is totally incorrect.

You cannot assign (not allowed) the coordinates directly into CLLocation!
Use the following instance method:

- (id)initWithLatitude:(CLLocationDegrees)latitude
    longitude:(CLLocationDegrees)longitude;

example:

CLLocation *LocationAtual = [[CLLocation alloc] initWithLatitude:-56.6462520 longitude:-36.6462520];
share|improve this answer
That's true, you can't assign to CLLocation attributes. – Hola Soy Edu Feliz Navidad Feb 22 at 5:57
The previous answer was incorrect. This is the correct one. – hook38 Mar 29 at 3:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.