How to use NSDecimalNumber?

前端 未结 4 566
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-30 00:51

I\'m building a app that needs to perform calculations on money.

I wonder how to properly use NSDecimalNumber, especially how to initialize it from integers, floats

4条回答
  •  温柔的废话
    2020-11-30 01:03

    One small addition: if you init NSDecimalNumber from a string, it might be useful to set a locale also. For example, if your string contains comma as a decimal separator.

    self.order.amount = [NSDecimalNumber decimalNumberWithString:self.amountText locale:[NSLocale currentLocale]];
    

提交回复
热议问题