You could use NSNumber
NSString *myString = [[NSNumber numberWithFloat:myFloat] stringValue];
But there’s no problem doing it the way you are, in fact the way you have in your question is better.
You could use NSNumber
NSString *myString = [[NSNumber numberWithFloat:myFloat] stringValue];
But there’s no problem doing it the way you are, in fact the way you have in your question is better.