【ios开发】xcode13中UIButton输出sender.currentTitle为nil问题解决

在xcode13下进行ios移动平台开发,学习计算器实例制作过程中,发现输出button的currenttitle始终为nil,查阅网上资料也始终无法解决。

按钮关联代码:

  @IBAction func touchDigit(_ sender: UIButton) {
      let digit = sender.currentTitle
      print("\(String(describing: digit)) was touched")

    }

点击按钮后输出结果:
image

解决方法:
设置button的Style为Default
image

问题解决!
image

posted @ 2022-03-11 10:41  portion  阅读(274)  评论(0编辑  收藏  举报