Created
November 29, 2016 12:30
-
-
Save olxios/36ba10c483c24b58c4b5dcb43e7fffcd to your computer and use it in GitHub Desktop.
Average array value
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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