Hi I am trying to make it so that I can find and log the biggest object of an NSMutableArray. I have searched for this, but I have only seen it for an NSArray. This is the code I saw.
numbers = [numbers sortedArrayUsingSelector:@selector(compare:)];
float min = [numbers[0] floatValue]
float max = [[numbers lastObject] floatValue];
However, when I put that in, it doesn't work because I am using a mutable array. Thanks!