1

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

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

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

4

2 回答 2

1

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

[self.view addSubview:label];
于 2013-06-26T18:09:59.600 回答
0

你错过了一行代码[self.view addSubview: label];代码应该写成

UILabel* label = [[UILabel alloc] initWithFrame: labelFrame];
[label setText: @"My Label"];
[label setTextColor: [UIColor orangeColor]];
[self.view addSubview: label]
于 2013-06-26T18:09:54.910 回答