如何从子视图访问超级视图的视图控制器

时间:2019-04-26 08:46:38

标签: ios swift iphone xcode

我正在创建一个UIView,其中将有一个UITableView。我想将此UITableView委托和数据源设置为其超级视图的视图控制器。

代码:

import UIKit

class AllTasksView: UIView {

    let tableview = UITableView()

    override init(frame: CGRect) {
        super.init(frame: frame)

    }


    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)

    }
     override func didMoveToSuperview() {
    tableview.delegate = "SUPERVIEW.ViewController"
    tableview.dataSource = "SUPERVIEW.ViewController"
}

是否可以这样做? override UITableview方法最好在哪里?我已经在我的UIViewController中这样做了。

1 个答案:

答案 0 :(得分:1)

由于关注点分离,您无法从UIViewController访问UIView

或者,您可以使用委托来访问UIViewController

   class AllTasksView{
       weak var delegate: UITableViewDataSource & UITableviewDelegate?{
           didSet{
               tableView.delegate = newValue
               tableView.dataSource = newValue
           }
       }


   }

附加

       class CustomVC: UIViewController, UITableViewDelegate, UITableViewDataSource{
          //implement tableview methods here 


           func viewDidLoad(){
               super.viewDidLoad()

              let allTasksView = AllTasksView()
              view(addSubview: allTasksView)

              //add some positioning and size constraints here for allTasksView 

              allTasksView.delegate = self //this would call the didSet and would automatically setup the allTasksView.tableView's delegate and dataSource to this vc
           }
       }