I have a large NSArray containing NSNumbers like 3, 4, 20, 10, 1, 100, etc...
How do I get the total sum of all these NSNumbers (3 + 4 + 20 + 10 + 1 + 100 + etc...) as one total NSInteger?
Thank you!
|
I have a large How do I get the total sum of all these NSNumbers Thank you! |
|||
|
|
|
|||
|
|
|
You can use this:
|
|||
|
|
Iterate through the array
|
|||
|
|
may this will help you |
|||
|
|
|
long long sum = ((NSNumber*)[array valueForKeyPath: @"@sum.longLongValue"]).longLongValue; |
|||||||
|