在呈现程序之前,我有一些代码可以在我的视图中设置按钮。设置按钮后,在程序执行的其余部分对 UI 没有其他更改。这段代码应该放在 viewDidLoad 中吗?
这是我指的代码类型:
UIButton *buyerButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
buyerButton.frame = CGRectMake(leftSide, topSide+(c-1)*(buttonHeight+interButtonHeight), buttonWidth, buttonHeight);
[buyerButton setTitle:thisName forState:UIControlStateNormal];
[self.view addSubview:buyerButton];
谢谢阅读。