我有以下财产:
@property (nonatomic, assign) NSDecimalNumber askingPrice;
我正在尝试从文本字段设置值:
myManager.askingPrice = [self.askingPriceTextField.text doubleValue];
我收到以下警告:
Assigning to 'NSDecimalNumber' from incompatible type 'double'
另外,当我尝试获取以下值时:
[NSDecimalNumber numberWithDouble:myManager.askingPrice];
我得到错误:
Sending 'NSDecimalNumber' to parameter of incompatible type 'double'
我以前没有使用过 NSDecimalNumber,但是在 Google 上发现它是在处理货币时使用的。有人可以指出我可以使用的帮助函数,它可以让我做我想做的事情吗?
谢谢