如何以编程方式将标签添加到特定视图控制器?

时间:2014-03-30 23:59:53

标签: view controller uilabel

嘿伙计们,我知道这是一个非常简单的问题,但我被困住了。

到目前为止,我知道要添加标签:

UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, 50, 200, 40)];
[myLabel setBackgroundColor:[UIColor clearColor]];
[myLabel setText:@"Hi Label"];
[[self view] addSubview:myLabel];

1 个答案:

答案 0 :(得分:1)

只需将self替换为您的视图控制器。

UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, 50, 200, 40)];
[myLabel setBackgroundColor:[UIColor clearColor]];
[myLabel setText:@"Hi Label"];
[[viewController view] addSubview:myLabel];