我曾经使用以下代码在UIView内部创建矩形(例如:' candleContainer '):
UIView *myBox = [[UIView alloc] initWithFrame:CGRectMake(marginX, marginY, rectWidth, rectHeight)];
[self.candleContainer addSubview:myBox];
但是如何删除已经绘制的所有或每个矩形。我是通过从超级视图中删除'candleContainer' UIView来完成的。但这不是实际的解决方案,对吗?我想只删除那些矩形。我该怎么做?
答案 0 :(得分:2)
NSArray *viewsToRemove = [self.view subviews];
for (UIView *view in viewsToRemove) {
[view removeFromSuperview];
}
答案 1 :(得分:1)
首先,您必须从 self.candleContainer 获取所有UIView对象!然后从self.candleContainer中删除它。
for (UIView *view in self.candleContainer)
{
[view removeFromSuperview];
}
或者你可以为UIView对象添加标签!然后你可以通过viewWithTag:方法获取它然后从self.candleContainer中删除它!