Sum of Objects in an Array
How do you get the total sum of the contents of an array? I have an array filled with integers and here is my code. Instead of objectAtIndex I need something like SumofObjects:1,2,3,4,5; is this possible? Any help would be great thanks!
NSString *title = [delegate.titlearray objectAtIndex:0];
cell.Label.text = title;
|