我正在尝试编写我的第一个iPhone应用
Xcode 4.5.2中的我无法在标签
中添加文本我正在尝试在下一个视频中执行该程序
它始终不起作用,错误是使用未声明的标识符'label'
这总是在我写labe.text
.m file
中的
提前谢谢
答案 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];