• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 在没有 segue 的 2x ViewControllers 之间传递信息时,Delegate 总是为零

[复制链接]
菜鸟教程小白 发表于 2022-12-11 19:25:33 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我对使用 Xcode/Swift 编程还很陌生,但遇到了一个小问题。

我想使用委托(delegate)将信息从 ViewController 发送到第二个 ViewController 并且不使用 segue。我对此进行了很多阅读,发现最常见的解决方案是在 ViewDidLoad 中使用“instance”.delegate = self,但它对我不起作用。

-- 应用定义--

这很容易。在第一个 ViewController 上,我有一个按钮和一个标签。该按钮打开第二个 ViewController,它有一个 textField 和一个 Button。 Button 将 textField 中的内容发送到第一个 ViewController 以更新 Label。

-- 代码--

这是第一个 ViewController 的代码:

class ViewController: UIViewController, clickedButtonDelegate {

    @IBOutlet weak var Label: UILabel!

    func didClickedButton(text: String) {
        Label.text = text
    }

    var secondView = SecondViewController()

    override func viewDidLoad() {
        super.viewDidLoad()
        secondView.delegate = self
    }
}

这是第二个 ViewController 的代码:

protocol clickedButtonDelegate {
    func didClickedButton(text: String)
}

class SecondViewController: UIViewController {

    @IBOutlet weak var introducedText: UITextField!

    var delegate : clickedButtonDelegate!

    @IBAction func sendData(_ sender: Any) {
        if delegate != nil {
            let information:String = introducedText.text!
            delegate!.didClickedButton(text: information)
            dismiss(animated: true, completion: nil)
            self.navigationController?.popViewController(animated: true)
        }
    }
}

使用此代码不会发生任何事情,因为在 SecondViewController 中委托(delegate)始终为零。

你能帮忙吗?

提前谢谢你!



Best Answer-推荐答案


实际上我的原始代码更复杂。我试图通过一个更简单的练习来“减少问题”,以便更好地了解如何在有和没有 Segues 的情况下传递信息。

我将两个 ViewController 与 Segue 连接(见图)。

Layout

到目前为止,我发现了两种在这里有效的传递信息的方法:

  1. Segue:通过Segue连接两个ViewController并使用prepare(for segue),如下例,然后使用协议(protocol)函数:

    //This piece of code goes inside the first ViewController
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if segue.identifier == "showSecondView" {
            let secondView: SecondViewController = segue.destination as! SecondViewController
            secondView.delegate = self
        }
    }
    
  2. 实例化:通过创建第一个 ViewController 的新实例并使用我需要的来自第二个 View Controller 的信息,如示例代码中所示:

    //This piece of code goes inside the second ViewController
    @IBAction func sendData(_ sender: Any) {
        let text_to_pass = introducedText.text
    
        let firstVC = storyboard?.instantiateViewController(withIdentifier: "GetData") as! ViewController
        self.present(firstVC, animated: true)
        firstVC.Label.text = text_to_pass
    }
    

这两个选项都可以,但我想了解为什么上面的代码不起作用。我阅读了很多文章,大多数人都在 ViewDidLoad 中使用 secondView.delegate = self 并像魅力一样工作。

我做错了什么?

关于ios - 在没有 segue 的 2x ViewControllers 之间传递信息时,Delegate 总是为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47735120/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap