Not sure what you mean with "sum of last value". However you can access the last element of your array using lastObject.
int total = [[totalData lastObject] intValue];
Update:
What you're doing in your code is adding the index i to total. Use the following instead:
total += [[totalData objectAtIndex:i] intValue];
If you see labels overlapping each other you're probably calling the dataPrinting method multiple times. And since you don't remove the old ones they will stay. You create a property of your label or give your label a tag and reuse the same label and simple change the text on your label.
In your header:
@property (strong, nonatomic) UILabel *totalLabel;
In your implementation:
-(UILabel)totalLabel
{
if (_totalLabel == nil)
{
_totalLabel = [[UILabel alloc]initWithFrame:CGRectMake(100,75, 200, 60)];
_totalLabel.font=[UIFont fontWithName:@"Arial" size:60];
_totalLabel.textColor=[UIColor whiteColor];
_totalLabel.backgroundColor=[UIColor clearColor];
[scrollView addSubview:_totalLabel];
}
return _totalLabel;
}
-(void) dataPrinting
{
int total=0;
for (int i = 0; i < [totalData count]; i++)
{
total += [[totalData objectAtIndex:i] intValue];
}
self.totalLabel.text = [NSString stringWithFormat:@"%d",total];;
}