我需要手动设置标签控制代码,我有这个:
UILabel* label = [[UILabel alloc] initWithFrame: labelFrame];
[label setText: @"My Label"];
[label setTextColor: [UIColor orangeColor]];
但运行此代码后,标签未显示....
将其作为子视图添加到现有视图。
[self.view addSubview:label];
你错过了一行代码[self.view addSubview: label];
代码应该写成
UILabel* label = [[UILabel alloc] initWithFrame: labelFrame];
[label setText: @"My Label"];
[label setTextColor: [UIColor orangeColor]];
[self.view addSubview: label]