有谁知道这段代码有什么问题
NSDecimalNumber *quantity = [[NSDecimalNumber alloc] initWithString:[item objectForKey:@"Quantity"]];
NSDecimalNumber *price = [[NSDecimalNumber alloc] initWithString:[item objectForKey:@"Price"]];
NSDecimalNumber *itemTotal = [price decimalNumberByMultiplyingBy:quantity];
第 3 行抛出异常并出现错误:
Terminating app due to uncaught exception 'NSDecimalNumberOverflowException', reason: 'NSDecimalNumber overflow exception'