I\'m simply trying to convert CLLocationCoordinates into an NSValue to be used in an array brought back later in my app. Here is my code:
CLLocationCoordinates
NSValue
Hi you can convert the CLLocationCoordinates2D into an NSValue by doing like below but have you check the coordinate contains any value or not once.
NSValue *value = [NSValue valueWithMKCoordinate:coordinate];
Thanks