我被困在这里......我有两个数组 Arr_title 和 Arr_distance 我使用这种方法对 Arr_distance 进行了排序
NSSortDescriptor *sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"self" ascending:YES]autorelease];
sortedFloats = [appDel.Arr_distance sortedArrayUsingDescriptors:
[NSArray arrayWithObject:sortDescriptor]];
但问题是我想根据 sortedFloats 数组的索引对 Arr_title 进行排序...
thx 提前帮助我.......