【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")
}
点击按钮后输出结果:
解决方法:
设置button的Style为Default
问题解决!