Pytanie jest dość oczywiste. Muszę ustawić właściwość text instancji UILabel na int. Jak mam to zrobić? Przepraszam, jeśli to pytanie typu nooby.Ustawianie tekstu UILabel na int?
Dzięki!
Pytanie jest dość oczywiste. Muszę ustawić właściwość text instancji UILabel na int. Jak mam to zrobić? Przepraszam, jeśli to pytanie typu nooby.Ustawianie tekstu UILabel na int?
Dzięki!
zakładając, że masz:
UILabel *myLabel; //instance of your label
int myInt; //the integer you need to set as text into UILabel
można to zrobić, i to całkiem proste:
[myLabel setText:[NSString stringWithFormat:@"%d", myInt]];
czyli
myLabel.text = [NSString stringWithFormat:@"%d", myInt];
label.text = [NSString stringWithFormat:@"%i",intNumber];
NSNumber *number = [NSNumber numberWithInt:yourInt];
[yourLabel setText:[number stringValue]];
Spróbuj tego:
[label setText:[NSString stringWithFormat:@"%d", intValue]];