Если у вас есть:
UILabel *myLabel; //instance of your label
int myInt; //the integer you need to set as text into UILabel
Вы можете сделать это, и это довольно просто:
[myLabel setText:[NSString stringWithFormat:@"%d", myInt]];
или
myLabel.text = [NSString stringWithFormat:@"%d", myInt];