I have the following line of code
NSNumber *myValue = loadTempValue*0.420;
where I am trying to set the value of *myValue
to the value of loadTempValue*0.420
,
However, I get the error
Invalid operands to binary expression ('NSNumber *" and 'double')
Can someone advise how to set this out?
It seems that
loadTempValue
is also anNSNumber
. In that case you want:Why are you using
NSNumber
objects for these values?If
loadTempValue
was adouble
you could just do: