繁体   English   中英

添加开始触摸的节点

[英]Add nodes where touches began

我正在和Swift一起做游戏。 我需要在按下屏幕的位置添加节点,我知道这不是来自其他星球,但我做不到。

高度简化的示例如下所示:

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    guard let touch = touches.first else { return }
    let location = touch.location(in: self)
    let node = SKNode()
    node.position = location
    addChild(node)
}

通过以下方法,您可以通过点击添加删除标签:

    class ViewController: UIViewController{
        private var labels = [UILabel]()
        override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
            guard let touch = touches.first else {
                return
            }
            for label in labels {
                if label.frame.contains(touch.location(in: view)) {
                    label.removeFromSuperview()
                    return
                }
            }
            let label = UILabel()
            view.addSubview(label)
            labels.append(label)
            label.text = "touch"
            label.sizeToFit()
            label.center = touch.location(in: view)
        }
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM