[Solved] How do I turn an int into a float? [closed]
[ad_1] 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. 2 [ad_2] solved How do I turn an int into a … Read more