I have this line of code and am trying to figure out the pros and cons of the way I wrote it. I am just trying to set a label to a float value and both work.... just don't know which is better...
self.display.text=[[NSNumber numberWithFloat:32.445] stringValue];
Is there any difference to say
NSNumber *number = [[NSNumber alloc]initWithFloat:32.445];
self.display.text = [number stringValue];
Well - I know there must be a difference - just not sure what it would be. Seems like the first is more of a wrapper (if that makes sense)?
Thanks!!!