J'ai un UILabel
appelé optionsDisplayerBrushSizeLabel
dont la propriété de texte que je veux définir à CGFloat
: brushSizeVal
. Je comprends que la propriété de texte doit être une chaîne mais je ne sais pas comment convertir un CGFloat en NSString
.Comment faire pour définir un CGFloat à la propriété de texte UILabel
17
A
Répondre
30
Vous pouvez essayer:
[NSString stringWithFormat: @"%.2f", myFloat];
0
Plateau dans ce rapide
var a = String (stringInterpolationSegment:myFloat)
Je pense qu'il devrait [NSString stringWithFormat: "% 2f" @, myFloat]; pour les flotteurs. –
vous avez entièrement raison, j'ai édité ma réponse, désolé, une faute de frappe. –