NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"self" ascending:YES];
sortedFloats = [Arr_distance sortedArrayUsingDescriptors:
[NSMutableArray arrayWithObject:sortDescriptor]];
sortedFloats
NSMutableArray在哪里,Arr_distance
也是 NSMutableArray
我得到警告Incompatible pointer types assigning to 'NSMutableArray ' from 'NSArray '
仍然结果是正确的,但警告是什么?