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"]];