Can somebody please help me convert the following Objective-C statement to Swift?
CLLocationDistance distance = [fromLocation distanceFromLocation:toLocation];
I know that it must be simple to do that. I am brand new to iOS programming and any help will be greatly appreciated.
Thank you! :-)
let distance = fromLocation.distanceFromLocation(toLocation)
New syntax:
let distance = aLocation.distance(from: anotherLocation)