我对Xcode和Apple都是陌生的。我在使用骰子应用程序时正在使用https://www.udemy.com/course/ios-13-app-development-bootcamp,但我的按钮不起作用,这只是给我一个错误。该应用程序的目标是使按钮在按下时滚动骰子。现在,我只是试图让代码运行而没有错误。 The picture bellow shows the error and were it is coming up
@IBAction func rollButton(_ sender: UIButton) {
print("button got tapped")
}
The last line of code is my button code.
我曾尝试重新连接它,但仍在说它无法识别它。我在其他任何地方都找不到这样的错误。所以,我正在尝试我所知道的一切。任何帮助。谢谢。
@IBAction func rollButtonPressed(_ sender: Any) {
print("button tapped")
}