[ios] 신속한 addsubview 및 제거

탭 한 번으로 하위보기를 추가하고 제거하고 싶습니다. 이것은 내 코드입니다.

/ * 하위보기를 추가하려면 * /

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: NSSet, withEvent event: UIEvent) {
    let touch = touches.anyObject() as UITouch
    let point = touch.locationInView(self.view)

    if(testView.tag==100){
        println("Tag 100")
        testView.removeFromSuperview()
    }
    else{
        println("tag not found")
    }

}

그러나 제거가 작동하지 않습니다 누군가가 나를 도울 수 있습니까? 감사!



답변

도와 주셔서 감사합니다. 이것이 해결책입니다. 저는 서브 뷰를 생성했고 그것을 제거하기위한 제스처를 추가했습니다.

@IBAction func infoView(sender: UIButton) {
    var testView: UIView = UIView(frame: CGRectMake(0, 0, 320, 568))
    testView.backgroundColor = UIColor.blueColor()
    testView.alpha = 0.5
    testView.tag = 100
    testView.userInteractionEnabled = true
    self.view.addSubview(testView)

    let aSelector : Selector = "removeSubview"
    let tapGesture = UITapGestureRecognizer(target:self, action: aSelector)
    testView.addGestureRecognizer(tapGesture)
}

func removeSubview(){
    println("Start remove sibview")
    if let viewWithTag = self.view.viewWithTag(100) {
        viewWithTag.removeFromSuperview()
    }else{
        println("No!")
    }
}

최신 정보:

Swift 3+

@IBAction func infoView(sender: UIButton) {
    let testView: UIView = UIView(frame: CGRect(x: 0, y: 0, width: 320, height: 568))
    testView.backgroundColor = .blue
    testView.alpha = 0.5
    testView.tag = 100
    testView.isUserInteractionEnabled = true
    self.view.addSubview(testView)

    let aSelector : Selector = #selector(GasMapViewController.removeSubview)
    let tapGesture = UITapGestureRecognizer(target:self, action: aSelector)
    testView.addGestureRecognizer(tapGesture)
}

func removeSubview(){
    print("Start remove sibview")
    if let viewWithTag = self.view.viewWithTag(100) {
        viewWithTag.removeFromSuperview()
    }else{
        print("No!")
    }
}


답변

viewWithTag주어진으로 뷰를 찾으려면 함수 를 사용해야합니다 tag.

override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
    let touch = touches.anyObject() as UITouch
    let point = touch.locationInView(self.view)

    if let viewWithTag = self.view.viewWithTag(100) {
        print("Tag 100")
        viewWithTag.removeFromSuperview()
    } else {
        print("tag not found")
    }
}


답변

콘센트 또는 프로그래밍 코드를 통해 액세스 할 수 있다고 가정하면 뷰 fooremoveFromSuperview메서드를 참조하여 제거 할 수 있습니다.

foo.removeFromSuperview()


답변

내 사용자 지정 CollectionViewCell 내부에 뷰가 있고 해당 뷰에 그래프를 포함합니다. 새로 고침하려면 해당 뷰에 이미 그래프가 있는지 확인하고 제거하고 새로 적용해야합니다. 여기에 해결책이 있습니다

cell.cellView.addSubview(graph)
graph.tag = 10

이제 제거하려는 코드 블록에서 (귀하의 경우 gestureRecognizerFunction)

if let removable = cell.cellView.viewWithTag(10){
   removable.removeFromSuperview()
}

다시 삽입하려면

cell.cellView.addSubview(graph)
graph.tag = 10


답변

XCode 8 및 Swift 3을 사용하여이 코드를 테스트했습니다.

SuperView에 사용자 정의보기를 추가하려면 다음을 사용하십시오.

self.view.addSubview(myView)

Superview에서 사용자 정의보기를 제거하려면 다음을 사용하십시오.

self.view.willRemoveSubview(myView)


답변