我有 3 个不同的按钮,我正在使用 for 循环在我的 UIView 中显示它。问题是,只显示了一个按钮。
float yButton = 50.0;
for (int i = 0; i < 2; i++) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(80.0, yButton + 70.0, 160.0, 40.0);
[button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchDown];
[self.view addSubview:button];
[button setTag:i];
}
另外,如何将按钮标题设置为 A、B 和 C(因为只有 3 个按钮)。