如何在Xcode 4.5.2中添加标签,标签应在用户单击按钮后出现

时间:2013-01-21 08:58:10

标签: iphone xcode label

我正在尝试编写我的第一个iPhone应用

Xcode 4.5.2中的

我无法在标签

中添加文本

我正在尝试在下一个视频中执行该程序

http://youtu.be/0uVxxdZ5umY

它始终不起作用,错误是使用未声明的标识符'label'

这总是在我写labe.text

之后出现 .m file

中的

提前谢谢

2 个答案:

答案 0 :(得分:0)

设置按钮的IBAction。在该方法中,创建一个新的UILabel实例并将其添加到您的视图中。

我不确定语法。

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
label.text = @"your text";
[self.view addSubview:label]

答案 1 :(得分:0)

最简单的方法是

UILabel *yourLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 20];
[yourLabel setTextColor:[UIColor blackColor]];
[yourLabel setBackgroundColor:[UIColor clearColor]];
[yourLabel setFont:[UIFont fontWithName: @"Trebuchet MS" size: 14.0f]]; 
[yourSuperView addSubview:yourLabel];

如果你想隐藏,直到用户按下按钮。你可以做到

[yourLabel setHidden:YES];