Comment puis-je ajouter un pourcentage à ma fonction stringWithFormat ? Par exemple, j'aimerais avoir ce qui suit :
float someFloat = 40.233f;
NSString *str = [NSString stringWithFormat:@"%.02f%",someFloat];
Cela devrait donner la chaîne de caractères suivante :
40.23%
Mais ce n'est pas le cas. Comment puis-je y parvenir ?