How do I turn an int into a float? [closed]

NSNumber *yourNumber = [NSNumber numberWithInt: SliderMaximum];
float yourFloat = [yourNumber floatValue];

and you don’t need a pointer to int, it’s useless, computationally allocate a pointer and write inside address pointer to int is same as allocate a int and write int in it.

Leave a Comment