gpt4 book ai didi

swift - 如何使用 SpriteKit 检查我的按钮是否被点击?

转载 作者:行者123 更新时间:2023-11-28 08:15:08 25 4
gpt4 key购买 nike

我创建了一个按钮,现在我想检查对该按钮的点击,我该怎么做?我没有在我的代码中使用任何类。下面是我用来创建按钮的代码。

let startButton = UIButton(type: .system)    
startButton.frame = CGRect(x: 300, y: 400, width: 50, height: 10)
startButton.tintColor = .blue
startButton.setTitle("Next", for:.normal)
view.addSubview(startButton)

我想我需要使用 touchesBegan 方法,但我不知道如何正确地做到这一点。

提前致谢!

最佳答案

你的按钮

let startButton = UIButton(type: .system)    
startButton.frame = CGRect(x: 300, y: 400, width: 50, height: 10)
startButton.tintColor = .blue
startButton.setTitle("Next", for:.normal)
view.addSubview(startButton)

添加 Action

btn.addTarget(self, action: #selector(TDquizOptionBtn.TapAction(_:)), forControlEvents: UIControlEvents.TouchUpInside)

你的按钮操作

 func TapAction(sender:UIButton!){

//do whatever you want to do on button action
}

关于swift - 如何使用 SpriteKit 检查我的按钮是否被点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42799898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com