मैं उप दृश्य जोड़ना चाहता हूं और एक टैप से निकालना चाहता हूं। यह मेरा कोड है:
/ * सबव्यू जोड़ने के लिए * /
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")
}
}
लेकिन इसे हटाने से काम नहीं चल रहा है कोई मेरी मदद कर सकता है? धन्यवाद!