calculateField是一个UITextField。
我已经显示了选项并删除了其余的代码。我不习惯在xCode中调试,所以如果你能提供一些链接来学习如何使用xCode的调试区域,那就太好了!
@IBAction func oneButton(_ sender: Any) {
if isTyped == false {
calculationField.text! = ""
calculationField.text! += "1"
isTyped = true
} else {
calculationField.text! += "1"
} }