繁体   English   中英

在 object class 和 ViewController (Swift) 之间传递数据

[英]Passing data between an object class and a ViewController (Swift)

[我想要什么]我想开发一个功能,当我点击名为 BdaysVC 的初始 ViewController 的按钮(第一张图片)时,会出现一个表格视图(第二张图片),当我点击 tableView 的一行时,它会返回ViewController 传递activeSortingMode值。 如果我单击不透明视图,它只会关闭 tableView 而不会传递任何值。

视图控制器 表视图

[我有什么]我用来实现 tableView 的代码是:

class SortTableView: NSObject, UITableViewDelegate, UITableViewDataSource {

    ...

    func createViews (frame:CGRect) {
        // Creating an opaque view and a tableView and adding them above the BdaysVC
    }

    ...

    @objc func onClickTransparentView() {
        // Dismissing the tableView when touching the opaque view
    }

    ...

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        ...
        switch indexPath.row {
        case 0:
            // Change the activeSortingMode of BdaysVC to 0
        case 1:
            // Change the activeSortingMode of BdaysVC to 1
        case 2:
            // Change the activeSortingMode of BdaysVC to 2
        case 3:
            // Change the activeSortingMode of BdaysVC to 3
        default:
            print("sorting mode")
        }
    }

    ...

    override init() {
        super.init()
        ...
        tableView.delegate = self
        tableView.dataSource = self
        ...
    }

}

对于 ViewController:

class BdaysVC: UIViewController {
    ...
    var activeSortingMode: Int = 0
    ...
    let sortTableView = SortTableView()
    @IBAction func sortButtonClicked(_ sender: Any) {
        sortTableView.createViews(frame: self.view.frame)
    }

    override func viewWillAppear(_ animated: Bool) {
        ...
        retrieveSections(sortingMode: activeSortingMode)
    }

    override func viewDidLoad() {
        super.viewDidLoad()
        ...
        retrieveSections(sortingMode: activeSortingMode)
    }
}

[PROBLEM] My problem is that I don't know how to change the activeSortingMode value of the ViewController when a cell of the tableView is selected and reload the ViewController with the method viewWillAppear() .

我希望你能帮助我解决这个问题。 提前致谢!

您可以为此使用委托或闭包

 protocol ActiveSortingModeSelect {
      func activeSortingModeSelected(_ index: Int)
    }


      class SortTableView: NSObject, UITableViewDelegate, UITableViewDataSource {

            ...
          weak var delegate: ActiveSortingModeSelect!

            func createViews (frame:CGRect) {
                // Creating an opaque view and a tableView and adding them above the BdaysVC
            }

            ...

            @objc func onClickTransparentView() {
                // Dismissing the tableView when touching the opaque view
            }

            ...

            func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
                ...
               delegate.activeSortingModeSelected(indexPath.row)

            ...

            override init() {
                super.init()
                ...
                tableView.delegate = self
                tableView.dataSource = self
                ...
            }

        }

    class BdaysVC: UIViewController {
        ...
        var activeSortingMode: Int = 0
        ...
        let sortTableView = SortTableView()
        @IBAction func sortButtonClicked(_ sender: Any) {
            sortTableView.createViews(frame: self.view.frame)
        }

        override func viewWillAppear(_ animated: Bool) {
            ...
            retrieveSections(sortingMode: activeSortingMode)
        }

        override func viewDidLoad() {
            super.viewDidLoad()
            ...
            sortTableView.delegate = self // Don't forget to set delegate 
            retrieveSections(sortingMode: activeSortingMode)
        }
    }
    extension BdaysVC: ActiveSortingModeSelect {
      func activeSortingModeSelected(_ index: Int) {
       self.activeSortingMode = index
      }
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM