Hi,
I wrote a small class containing 2 class methods for some calculations. I call those methods from another class. I have declared everything properly in both classes and Xcode does not give any warnings. Still, I checked with debugger and when I call method from this class it just doesn't invoke
THis is declaration:
+(double)DoubleNearestRounding:(double)unrounded
NumberOfDecimals:(int)decimals;
And here is the call from another class:
ddd = [DoubleRounding DoubleNearestRounding:[[textField text] doubleValue]
NumberOfDecimals:2];
Any ideas, what have I done wrong?
Thanks in advance!