我需要手动设置标签控制代码,我有:
UILabel* label = [[UILabel alloc] initWithFrame: labelFrame];
[label setText: @"My Label"];
[label setTextColor: [UIColor orangeColor]];
但在运行此代码后,标签未显示....
答案 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]