ios 标签字段上的按钮文本[已关闭]

axkjgtzd  于 12个月前  发布在  iOS
关注(0)|答案(1)|浏览(107)

**已关闭。**此问题需要debugging details。目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
昨天就关门了。
Improve this question
我是iOS(Swift)编程的初学者。
我想创建一个计算器应用程序。当我点击“7”按钮时,它会在CALCULATE标签上显示“7”。但当我再次点击“7”按钮时,它只会显示“7”而不是“77”--点击两次,显示“777”--点击三次,依此类推。有人能指导我吗?
我试过启用多点触摸,但根本不起作用。

bvuwiixz

bvuwiixz1#

我来做个大胆的猜测:

var theTextOnTheScreen = ""

    Text(theTextOnTheScreen)

    //...

    Button { 
       //theTextOnTheScreen = "7" this won't work
       theTextOnTheScreen = "\(theTextOnTheScreen)7"
    }, {...}

字符串
7添加到当前文本,而不是将7设置为当前文本。

相关问题