gpt4 book ai didi

Swift - 从 uilabel 中删除最后输入的数字

转载 作者:行者123 更新时间:2023-11-28 11:15:33 25 4
gpt4 key购买 nike

我有 stanford swift course 的计算器,如果用户在标签中输入数字,我有一个任务,如果输入有误,用户可以从 uilabel 中删除最后输入的数字,我已经放置了用于从标签中删除最后一个数字的按钮,但是代码不工作,帮助,thnx。

@IBAction func removeLastDigit(sender: UIButton) {

let name: String = self.display.text!
let stringLength = count(name)
let substringIndex = stringLength - 1
name.substringToIndex(advance(name.startIndex, substringIndex))



}

最佳答案

您应该将名称设置为 display.text:

name.substringToIndex(advance(name.startIndex, substringIndex))
self.display.text = name

关于Swift - 从 uilabel 中删除最后输入的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32013745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com