gpt4 book ai didi

ios - 将数据从 SettingsView Controller 传递到 Mainstoryboard - Swift

转载 作者:行者123 更新时间:2023-11-30 12:37:22 38 4
gpt4 key购买 nike

我是 iOS 应用程序开发的新手,正在尝试构建一个小费计算器。应用程序的基本功能已完成。我的 Mainstoryboard 有一个段控件,它显示三个 % 值,例如 10、20、30。有一个“设置”按钮,单击该按钮会将我带到一个新页面,并在段控件中显示类似的 % 值。

我想要做的是,当单击一个数字(一段)时,它应该保存为默认的tip%值。我应该如何将此值传递给 Mainstoryboard 函数,我在其中编写了一个计算小费金额的函数?

最佳答案

我想您正在使用segue来移动到另一个 View ,所以使用prepareForSegue方法:

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "tipSegue"
{
if let destinationVC = segue.destinationViewController as? OtherViewController {
destinationVC.tipPercent = someValue
}
}
}

关于ios - 将数据从 SettingsView Controller 传递到 Mainstoryboard - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42707022/

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