将背景(图像)添加到我的 UIView(View_0)后,我希望实现一个按钮来删除相同的背景。
我该怎么做?我试图将不同的图像设置为 View_0 的背景,但这不起作用(我怀疑这个背景设置在“图像”后面)。
我不想用
[View_0 removeFromSuperview];
因为我需要 View_0 仍然存在用于其他目的....
//Create an ImageView
UIImageView *image = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 940, 422)];;
//Add the ImageView as the background of the View_0
[View_0 addSubview:image];
//Move custom image behind View
[View_0 sendSubviewToBack: image];
//Failed attempt to remove the background....
View_0.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"defaultImage.PNG"]];