.
你好,
我正在尝试以编程方式将 UIButton 和其他项目添加到我的 UIViewController 中,并且根据我在其他 SO 问题中阅读和看到的内容,我应该使用以下代码走上正确的轨道:
- (void)viewDidLoad
{
[super viewDidLoad];
UIButton *backButton = [UIButton buttonWithType:UIButtonTypeCustom];
backButton = [[UIButton alloc] init];
backButton = [UIButton buttonWithType:UIButtonTypeCustom];
backButton.frame = CGRectMake(10, 25, 150, 75);
backButton.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:15];
backButton.titleLabel.text = @"Back";
[self.view addSubview:backButton];
// Do any additional setup after loading the view.
}
现在代码被放在 viewDidLoad 方法中并且它没有出现,这让我想到了一个问题——我做错了什么?
当我想更改背景颜色并放入 viewDidLoad 时,它可以正常工作。
干杯杰夫