NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"self" ascending:YES];
sortedFloats = [Arr_distance sortedArrayUsingDescriptors:
[NSMutableArray arrayWithObject:sortDescriptor]];
其中sortedFloats
是的NSMutableArray和Arr_distance
也NSMutableArray的不兼容的指針類型分配給從「的NSArray」的NSMutableArray「
我得到了警告Incompatible pointer types assigning to 'NSMutableArray ' from 'NSArray '
還是結果是正確的,但什麼有關的警告?
雅我知道了謝謝很多先生...... –