Advertisement
davidbitton

Untitled

Feb 20th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     NSDecimalNumber *total = [[NSDecimalNumber alloc] init];
  2.     for(PPEInvoiceItem *item in itemList.item) {
  3.         total = [total decimalNumberByAdding:item.taxRate];
  4.     }
  5.     return total;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement