设置标签自定义控件?

时间:2013-06-26 18:07:26

标签: ios uilabel

我需要手动设置标签控制代码,我有:

UILabel* label = [[UILabel alloc] initWithFrame: labelFrame];
[label setText: @"My Label"];
[label setTextColor: [UIColor orangeColor]];

但在运行此代码后,标签未显示....

2 个答案:

答案 0 :(得分:1)

将其作为子视图添加到现有视图中。

[self.view addSubview:label];

答案 1 :(得分:0)

您错过了一行代码[self.view addSubview: label];代码应该像

一样写
UILabel* label = [[UILabel alloc] initWithFrame: labelFrame];
[label setText: @"My Label"];
[label setTextColor: [UIColor orangeColor]];
[self.view addSubview: label]