I have an array of strings
NSArray *myNumbers = @[@"0.0454", @"-1.3534", @"0.345",
@"65", @"-0.345", @"1.35"];
How can I find the greatest numeric value (65) from this array of string?
Is there any default method or workaround for this?