2012-03-14 8 views
6

質問はかなり自明です。 UILabelインスタンスのtextプロパティをintに設定する必要があります。これをどうやって行うのですか?申し訳ありませんが、それはnoobyの質問です。UILabelのテキストをintに設定していますか?

ありがとうございます!

答えて

12

あなたが持っていると仮定:あなたがこれを行うことができます

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]; 
2
label.text = [NSString stringWithFormat:@"%i",intNumber]; 
3
NSNumber *number = [NSNumber numberWithInt:yourInt]; 
[yourLabel setText:[number stringValue]]; 
0

試用:

[label setText:[NSString stringWithFormat:@"%d", intValue]]; 
関連する問題