By using those lovely NSLogs, I have found that my NSNumber instance won't become a float. The variable is definitely a float, and it shows up as 100.00. But the NSNumber shows up as 100. Here's the assignment code.
returnValue=[[NSNumber alloc] initWithFloat:animateFloat];
Should this not make returnValue (my NSNumber instance) a float value, the value of animateFloat? (Which is of course a float variable)
returnValue=[[NSNumber alloc] initWithFloat:animateFloat];
Should this not make returnValue (my NSNumber instance) a float value, the value of animateFloat? (Which is of course a float variable)