如何在UI Label中显示int?

时间:2013-01-27 04:55:28

标签: ios

我需要在UILabel中的AppDelegate.mm中显示一个int。我是新手,所以我不知道该怎么做。 Xcode,4.3。现在,我在xib文件中有一个UILabel,在AppDelegate.mm中有一个整数y。我只需要在UILabel中显示。我不知道如何连接这两件事。谢谢,汤姆洛瑞。

3 个答案:

答案 0 :(得分:3)

尝试使用此函数在标签中显示Int:

self.label.text = [NSString stringWithFormat:@"%d", 3];

答案 1 :(得分:0)

self.Yourlabel.text = [NSString stringWithFormat:@"%d", Y];

变量Y是int声明...的值

答案 2 :(得分:0)

       int yourInt;
       NSString *num = [NSString stringWithFormat:@"%d", youInt];
       UILabel *lab = [UILabel alloc] initWhithFrame:CGRectMake(200, 200, 100, 30)];
       lab.text = num;
       [self.view addSubView:lab];