gpt4 book ai didi

ios - 从嵌入式 View Controller 传回数据

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

我有一个嵌入到另一个 UIViewController 中的 UIViewController。在这个 subview Controller 中,有两个 UITextField 允许用户输入一些数据。

如何将输入到该嵌入式 View Controller 中的数据传递回父 View Controller ?

我尝试使用 this 获取对 subview Controller 中文本字段的引用方法,但出现错误。

let textfield: UITextField = self.childViewControllers.last?.usernameTextField! as UITextField

usernameTextField 是嵌入 UIViewController 中的 UITextField 之一。我收到以下错误,

“AnyObject”没有名为“usernameTextField”的成员

这是执行此操作的最佳方法还是我可以采取任何其他方法来完成此操作?

谢谢。

最佳答案

使用前需要进行类型转换。检查:

let myObj : MyClass        = self.childViewControllers.last as ? MyClass;
let textfield: UITextField = myObj?.usernameTextField! as UITextField;

关于ios - 从嵌入式 View Controller 传回数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25264048/

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