我使用 IB 添加了 UIScrollVIew。然后使用下面的代码向这个 UIScrollView 添加一些按钮。
for (int index=0; index<3;index++)
{
UIButton* button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:buttonTitle forState:UIControlStateNormal];
[button setFrame:CGRectMake(18,200,300,45)];
[button setTag:100+index];
[button addTarget:self action:@selector(butclick:) forControlEvents:UIControlEventTouchUpInside];
[self.scrollView addSubview:button];
}
现在我需要一种方法来删除我从 ScrollView 添加的这些按钮。
注意:还有其他按钮、图像、标签附加到 UIScrollView。这些不应该被删除。只有我以编程方式添加的按钮应该从 UIScrollView 中删除。