gpt4 book ai didi

swift - 为什么总值不随每个 switch case 更新? swift 4

转载 作者:行者123 更新时间:2023-11-28 13:44:21 24 4
gpt4 key购买 nike

我是 Swift 的新手,所以我不确定这是否可行;但我有一些代码,其中每种食物类型的值(value)都以公斤为单位。我使用递增按钮来选择每种食物类型的数量,并使用 countLabel 显示此计数。然后将以千克为单位的值添加到所有食物组合的 currentTotal 中。当前总数已委托(delegate)给另一个类(class)/ Storyboard。我已经检查过,我的代表团和理货员正在工作。但 currentTotal 不是。基本上,currentTotal 保持在每种情况类型内,例如,如果我将西瓜增加 2,而每个西瓜为 10kg,则 currentTotal 为 20kg。如果我切换类型(点击另一种食物类型的增量按钮),则 currentTotal 从 0 开始,并将为该类型执行 currentTotal,例如水值 2kg。如果我点击增量按钮两次,waterTally 等于 2,currentTotal 现在显示为 4kg。如果我切换回西瓜,则 currentTotal 又是 20kg(因此每种类型的 currentTotal 都是持久的)。但我希望 currentTotal 等于所有类型的总和,而不仅仅是每种类型的 currentTotal。我尝试将每种情况下的 currentTotal 更改为总计类型,即“waterTotal”,然后在案异常(exception)写 currentTotal = waterTotal + carrotTotal + watermelonTotal + avocadoTotal(我将其添加到 delegate 正上方的函数中?.showTotal(currentTotal) 但结果与上述相同。是不可能添加不同开关案例的值还是有某种方法可以做到这一点?下面是我指的类和委托(delegate)对象类。谢谢

Apologies, I was asked to remove the code as it will be committed to a private repo.

最佳答案

您为每种类型创建一个新 View

for type in incrementTypes {
let nib = UINib(nibName: "WildlifeIncrementer", bundle: nil).instantiate(withOwner: self, options: nil)

这意味着每种类型都有自己的 currentTotal,因此当您调用 showTotal 时,currentTotal 中只会包含最后一个 View 的值> 在 WildlifeCalculatorViewController

现在第一个答案是将 showTotal 更改为

func showTotal(_ total: Int) {
currentTotal += total
totalLabel.text = ("\(currentTotal)kg")
}

但是你需要在添加和删除项目时单独调用它(并且你需要允许它为负数)。

更好的解决方案是重新设计您的 View 类和委托(delegate)模式的实现,您是想要每种类型一个 View 还是所有 View 一个 View ?您最好使用一个单独的类来保存计数/重量数据并进行计算。

关于swift - 为什么总值不随每个 switch case 更新? swift 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55611987/

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