I've a float value represented in bits, stored in a 32-bit integer value. In Java , I can get float value by Float.intBitsToFloat
What's equivalent method in Objective-C?
I try to get the float by calling [[NSNumber numberWithInt:value] floatValue], its wrong