gpt4 book ai didi

ios - 通过 unwind segue 传递数据

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

我一直在寻找这个问题的答案......我不知道如何通过 unwind segue 传递数据。我知道我应该使用 prepareForSegue 但我不确定我应该输入什么。我正在尝试从一个类中的 UIPickerView 传递一个变量 (myLabel):

func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
myLabel.text = pickerData[row]
}

到另一个类(class)。我已经有了 unwind segue 代码,但不知道将 prepareForSegue 放在哪里以及放什么。

如果我的问题需要更多说明,请告诉我。

最佳答案

如果我正确理解你的问题,你应该这样做:

class MyPickerController : UIViewController {
@IBOutlet weak var myLabel: UILabel!

var pickerData:[String]

func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
myLabel.text = pickerData[row]
performSegueWithIdentifier( "mySegueName", sender: self )
}

func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if let myController = segue.destinationController as? MyDestinationViewController {
myController.text = myLabel.text
}
}

这会将标签文本传递给 MyDestinationViewController 实例。请注意,我没有传递 UILabel 对象,而是文本。您不能将该 UILabel 对象放置在目标 Controller 界面中,但您可以使用文本并为其设置另一个标签,例如。

关于ios - 通过 unwind segue 传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30622999/

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