0
我得在一個NSArray幾家餐館的名單,我想複製是最接近我的位置到一個NSMutableArray,責令的那些......我有下面的代碼秩序的NSMutableArray通過計算距離
@property(strong, nonatomic) NSArray *restaurants;
@property(strong, nonatomic) NSMutableArray *orderedRestaurants;
-(void) orderRestaurants{
for(RestaurantBranch *restaurant in _restaurants){
if([self getDistance:restaurant]<10){
[_orderedRestaurants addObject:restaurant];
}
}
}
,但我無法找到一個有效的方法所計算的距離訂購的NSMutableArray