在Xcode中,我收到一个读取为...-[Dicee_iOS13.ViewController Button:]的错误:无法识别的选择器已发送到实例0x7f8fd55092b0

问题描述 投票:-1回答:1

我对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.

我曾尝试重新连接它,但仍在说它无法识别它。我在其他任何地方都找不到这样的错误。所以,我正在尝试我所知道的一切。任何帮助。谢谢。

ios xcode button
1个回答
0
投票
@IBAction func rollButtonPressed(_ sender: Any) {
  print("button tapped")
}
© www.soinside.com 2019 - 2024. All rights reserved.