Skip to content

Instantly share code, notes, and snippets.

@olxios
Created November 29, 2016 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olxios/36ba10c483c24b58c4b5dcb43e7fffcd to your computer and use it in GitHub Desktop.
Save olxios/36ba10c483c24b58c4b5dcb43e7fffcd to your computer and use it in GitHub Desktop.
Average array value
NSArray *testArray = @[@(15.67), @(9.87), @(4.56), @(3.45), @(8.76), @(6), @(1), @(20.11)];
NSNumber *average = [testArray valueForKeyPath:@"@avg.self"];
NSLog(@"Average %@", average);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment