如何在 UIViewController 之间使用委托?

How to use delegates between UIViewControllers?

我已经搜索过了:

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

ViewController1

    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)
    }

}

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

我也曾使用通知中心作为委托的替代品,但没有成功。

您几乎所有事情都做对了,但是您将 ViewController2 的委托设置错了。

您实际上是在 viewDidLoad 中设置 ViewController2 的新实例的委托,但在 moveToOtherVC 中您将不同的 ViewController2 作为 [=17= 的根]

改为设置 ViewController2 的新实例的委托,并将此实例用作呈现 navigationController

rootViewController
@objc func moveToOtherVC() {
    let vc2 = ViewController2()
    vc2.delegate = self
    let navigationController = UINavigationController(rootViewController: vc2)
    present(navigationController, animated: true, completion: nil)
}

或者您可以通过将 otherView 作为 navigationController

rootViewController 传递来解决您的问题
let navigationController = UINavigationController(rootViewController: otherView)

像这样使用 ViewController1 函数-

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