Swift: how to disable user interaction while touch action is being carried out?

后端 未结 8 2428
执念已碎
执念已碎 2021-02-12 03:27

I\'m working with sprite kit and if the user touches the screen, the actions within

override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
            


        
8条回答
  •  醉话见心
    2021-02-12 04:28

    Try to get the view from the touch object and then dissable the user interaction on it.

    touch.view.isUserInteractionEnabled = false
    

提交回复
热议问题