smoothumut
smoothumut

Reputation: 3491

Convert NSDecimalNumber to NSDecimal

I am using the CorePlot library in order to create some charts. While I am working on it I have come to the need to change the X-axis property Xaxis.MajorIntervalLength, which is an NSDecimal.

I tried, but I cannot create an NSDecimal number. I can only create an NSDecimalNumber, and when I try to assign it to the property it throws this error:

Assigning to NSDecimal from incompatible type NSDecimalNumber

I know that NSdecimal is not an Objective-C class anymore, but I guess but I need to use it somehow!

Upvotes: 4

Views: 665

Answers (1)

Undo
Undo

Reputation: 25697

You can ask your NSDecimalNumber for its decimalValue:

plot.property = myDecimalNumber.decimalValue;

Upvotes: 4

Related Questions