swift는 subview를 추가하여 제거합니다. 나는 탭 한 번으로 서브뷰를 추가하고 제거하고 싶습니다.이게 내 암호입니다. 하위 보기 추가하기 var testView: UIView = UIView(frame: CGRectMake(0, 0, 320, 568)) testView.backgroundColor = UIColor.blueColor() testView.alpha = 0.5 testView.tag = 100 super.view.userInteractionEnabled = false self.view.userInteractionEnabled = true self.view.addSubview(testView) 하위 보기 제거하기 override func touchesBegan(touches: NSSe..