首页 > 解决方案 > 如何在 UIViewControllers 之间使用委托?

问题描述

我已经搜遍了:

但找不到答案。基本上我有两个视图控制器,并试图使用委托来更新数组并最终重新加载集合视图。

视图控制器1

    class ViewController1: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource, AppendDelegate {

    let cellID = "cell"

    var list = ["item1", "item2", "item3"]
    let otherView = ViewController2()

    override func viewDidLoad() {
        super.viewDidLoad()

        otherView.delegate = self
        print(list)

        let collection = UICollectionView(frame: view.bounds)
        collection.register(UICollectionViewCell.self, forCellWithReuseIdentifier: cellID)
        collection.delegate = self
        collection.dataSource = self
        collection.backgroundColor = UIColor.cyan

        view.backgroundColor = .white
        view.addSubview(collection)

        self.navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .action, target: self, action: #selector(moveToOtherVC))
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 5
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellID, for: indexPath) as UICollectionViewCell
        cell.backgroundColor = UIColor.black
        return cell
    }

    func appendItem(string: String) {
        list.append(string)
        print(list)
    }

    @objc func moveToOtherVC() {
        let VC2 = UINavigationController(rootViewController: ViewController2())
        present(VC2, animated: true, completion: nil)
    }
}

我的第二个视图控制器

    protocol AppendDelegate {
    func appendItem(string: String)
}

class ViewController2: UIViewController {

    var delegate: AppendDelegate?

    let textField: UITextField = {
        let tf = UITextField(frame: CGRect(x: 0, y: 0, width: 39, height: 20))
        tf.backgroundColor = .blue
        return tf
    }()

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .white
        view.addSubview(textField)

        self.navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .action, target: self, action: #selector(sendDataToCollection))

        textField.center.x = view.center.x
        textField.center.y = view.center.y
    }

    @objc func sendDataToCollection() {
        guard let text = textField.text else {return}
        self.delegate?.appendItem(string: text)
        textField.text = ""
        moveToVC()
    }

    @objc func moveToVC() {
        dismiss(animated: true, completion: nil)
    }

}

在第二个类中,self.delegate.appendItem 不应该导致 ViewController1 附加到列表中吗?

我还使用通知中心作为代表的替代方案,但没有找到运气。

标签: swiftuiviewcontrollerdelegates

解决方案


像这样使用 ViewController1 函数-

  @objc func moveToOtherVC() {
     let otherView = 
     self.storyboard?.instantiateViewController(withIdentifier: 
     "ViewController2") as! ViewController2
     otherView.delegate = self                                
     self.present(next, animated: true, completion: nil)
   }

推荐阅读