我有一个位置数组,当我添加另一个位置时,我希望能够检查数组中的其他位置是否在新位置的块内。这是我必须找到当前位置的代码:
//Geocoding Block
[self.geoCoder reverseGeocodeLocation: locationManager.location completionHandler:
^(NSArray *placemarks, NSError *error) {
//Get nearby address
CLPlacemark *placemark = [placemarks objectAtIndex:0];
//String to hold address
locatedAt = [[placemark.addressDictionary valueForKey:@"FormattedAddressLines"] componentsJoinedByString:@", "];
该数组尚未创建,因为我想先弄清楚这一点,我不知道数组中应该保存什么(字符串...)。我知道如何进行搜索我只需要知道如何比较位置。