views:

54

answers:

2

I have this code:

NSLog(@"Count of items we will loop through is: %d",[self.defaultBudgetItemsArray count]);
id object;
while (object = [e nextObject]) {
    if ([object objectForKey:@"actualCost"]) {
        currentTotal = [currentTotal decimalNumberByAdding: [object objectForKey:@"actualCost"]];
        NSLog(@"decimalNumberByAdding gives: %@",[numberFormatter stringFromNumber:[currentTotal decimalNumberByAdding: [object objectForKey:@"actualCost"]]]);
        NSLog(@"Trying to add: %@",[numberFormatter stringFromNumber:[object objectForKey:@"actualCost"]]);
    }
}

totalActualCostLabel.text = [numberFormatter stringFromNumber:currentTotal];
NSLog(@"Budget items total: %@",[numberFormatter stringFromNumber:currentTotal]);

The console output is:

2010-10-09 12:58:45.285 App[11659:307] Count of items we will loop through is: 6
2010-10-09 12:58:45.287 App[11659:307] decimalNumberByAdding gives: ($0.00)
2010-10-09 12:58:45.289 App[11659:307] Trying to add: $0.00
2010-10-09 12:58:45.292 App[11659:307] decimalNumberByAdding gives: ($0.00)
2010-10-09 12:58:45.293 App[11659:307] Trying to add: $0.00
2010-10-09 12:58:45.296 App[11659:307] decimalNumberByAdding gives: ($0.00)
2010-10-09 12:58:45.301 App[11659:307] Trying to add: $0.00
2010-10-09 12:58:45.303 App[11659:307] decimalNumberByAdding gives: ($0.00)
2010-10-09 12:58:45.305 App[11659:307] Trying to add: $5.00
2010-10-09 12:58:45.307 App[11659:307] decimalNumberByAdding gives: ($0.00)
2010-10-09 12:58:45.309 App[11659:307] Trying to add: $0.00
2010-10-09 12:58:45.311 App[11659:307] decimalNumberByAdding gives: ($0.00)
2010-10-09 12:58:45.318 App[11659:307] Trying to add: $0.00
2010-10-09 12:58:45.320 App[11659:307] Budget items total: ($0.00)

Notice that one of the "Trying to add" lines says $5.00 but decimalnumberbyadding doesn't seem to be doing its thing. Any ideas?

Thanks!

-Max

A: 

We don't have quite enough information to help you solve your specific issue. That said, I tried the following code to initialise yours:

NSArray *ary = [NSArray arrayWithObjects:
    [NSDictionary dictionaryWithObject:[NSDecimalNumber decimalNumberWithString:@"0"] forKey:@"actualCost"], 
    [NSDictionary dictionaryWithObject:[NSDecimalNumber decimalNumberWithString:@"4"] forKey:@"actualCost"], 
    [NSDictionary dictionaryWithObject:[NSDecimalNumber decimalNumberWithString:@"5"] forKey:@"actualCost"], 
    [NSDictionary dictionaryWithObject:[NSDecimalNumber decimalNumberWithString:@"2"] forKey:@"actualCost"], nil];

NSEnumerator *e = [ary objectEnumerator];
NSDecimalNumber *currentTotal = [NSDecimalNumber zero];
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];

The above code seems to work with no dramas, so I'll have to second @NSResponder's comment asking for your initialisation code.

Also, the following line of your sample has (what I assume to be) unintended behaviour:

NSLog(@"decimalNumberByAdding gives: %@",[numberFormatter stringFromNumber:[currentTotal decimalNumberByAdding: [object objectForKey:@"actualCost"]]]);

It does not cause your total to be incorrect, but the log output will be misleading. By the time the machine has reached that line, it will have already added the current sum and your log will make it appear to have been added twice. I think you probably want the following:

NSLog(@"decimalNumberByAdding gives: %@", [numberFormatter stringFromNumber:currentTotal]);
Sedate Alien
A: 

I ended up going with itaiferber's suggestion of using int's for everything and having the data be in cents. Seemed pretty simple. The code ended up as:

- (void)totalBudgetItems {
    NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
    [numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
    [numberFormatter setCurrencySymbol:@"$"];
    [numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
    NSInteger currentTotal = 0;
    NSEnumerator *e = [self.defaultBudgetItemsArray objectEnumerator];
    NSLog(@"Count of items we will loop through is: %d",[self.defaultBudgetItemsArray count]);
    id object;
    while (object = [e nextObject]) {
        if ([object objectForKey:@"actualCost"]) {
            currentTotal = currentTotal + [[object objectForKey:@"actualCost"] intValue];
        }
    }
    NSNumber *tempDisplayTotalNumber = [NSNumber numberWithInt:currentTotal];
    totalActualCostLabel.text = [numberFormatter stringFromNumber:tempDisplayTotalNumber];
}

Thanks!!

Max