Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Convert float value to NSString

How can I draw an int or float in a UILabel through an NSString?

share|improve this question
4  
What have you tried so far? What issue did you hit? I recommend you go through some intro tutorials and books - folks here are very helpful with specific issues and questions. – bryanmac Aug 1 '12 at 2:47

marked as duplicate by Josh Caswell, tc., 0x7fffffff, Chris, Mehul Nov 27 '12 at 8:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

[NSString stringWithFormat:@"%d", yourIntValue];
[NSString stringWithFormat:@"%f", yourFloatValue];

Your question has probably been asked before, might be marked as a duplicate. Also, it might be a good idea to follow bryanmac's advice to become "less new to iPhone development"!

share|improve this answer
Ok, it worked. Thank you! – TennisMaster Aug 1 '12 at 2:51

In order to change the text on the label, you need to assign its text property:

mylabel.text = [NSString stringWthFormat:"%d", intVal];

The stringWithFormat: is very flexible, it lets you create new NSStrings using a format string as a template, and replacing format specifiers with additional data that you can pass to the method. Entries with % inside the string get replaced with the data items that you pass. %d or %i mean "integer", %f or %g mean "floating point", and so on. Here is the list of all specifiers.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.