3つの異なるボタンがあり、UIViewに表示するためにforループを使用しています。問題は、表示されるボタンが1つしかないことです。
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つしかないため)。