質問はかなり自明です。 UILabelインスタンスのtextプロパティをintに設定する必要があります。これをどうやって行うのですか?申し訳ありませんが、それはnoobyの質問です。UILabelのテキストをintに設定していますか?
ありがとうございます!
質問はかなり自明です。 UILabelインスタンスのtextプロパティをintに設定する必要があります。これをどうやって行うのですか?申し訳ありませんが、それはnoobyの質問です。UILabelのテキストをintに設定していますか?
ありがとうございます!
あなたが持っていると仮定:あなたがこれを行うことができます
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];
label.text = [NSString stringWithFormat:@"%i",intNumber];
NSNumber *number = [NSNumber numberWithInt:yourInt];
[yourLabel setText:[number stringValue]];
試用:
[label setText:[NSString stringWithFormat:@"%d", intValue]];