objective-c – 将UILabel的文本设置为int?

前端之家收集整理的这篇文章主要介绍了objective-c – 将UILabel的文本设置为int?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题几乎是自我解释的.我需要将UILabel实例的text属性设置为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];
原文链接:https://www.f2er.com/c/117438.html

猜你在找的C&C++相关文章