我正在使用CorePlot库来创建一些图表。当我正在研究它时,我需要更改X轴属性Xaxis.MajorIntervalLength
,这是一个NSDecimal。
我试过,但我无法创建NSDecimal
号码。我只能创建NSDecimalNumber
,当我尝试将其分配给属性时会抛出此错误:
Assigning to NSDecimal from incompatible type NSDecimalNumber
我知道NSdecimal不再是Objective-C类了,但我想但我需要以某种方式使用它!
答案 0 :(得分:3)
您可以向NSDecimalNumber
询问decimalValue
:
plot.property = myDecimalNumber.decimalValue;