自定义委托不会从ContainerView执行

时间:2018-03-26 16:24:03

标签: swift delegates

我尝试在我的ViewController中获取一个事件/动作,如果我的Tableview中有一行被按下。
我有以下故事板: Project's Storyboard

我的Storyboard中的Tableview有StoryboardID“myTableViewController”
我的(目的地)ViewController:

import UIKit

class ViewController: UIViewController, songsDelegate {

@IBOutlet weak var label: UILabel!

   override func viewDidLoad() {
       super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
       self.view.backgroundColor = UIColor.red
       let storyboard = UIStoryboard(name: "Main", bundle: nil)
       let tableviewController = storyboard.instantiateViewController(withIdentifier: "myTableViewController") as! TableViewController
       tableviewController.delegate = self


   }

   override func didReceiveMemoryWarning() {
       super.didReceiveMemoryWarning()
       // Dispose of any resources that can be recreated.
   }

   func songTapped(_ title: String) {
      print(" action ")
      self.label.text = title
   }

}

我的(响应) TableViewController 委托协议:

import UIKit



protocol songsDelegate: class {
    func songTapped(_ title: String)
}



class TableViewController: UITableViewController {
    weak var delegate : songsDelegate?

    override func viewDidLoad() {
        super.viewDidLoad()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }

    override func numberOfSections(in tableView: UITableView) -> Int {
        // #warning Incomplete implementation, return the number of sections
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // #warning Incomplete implementation, return the number of rows
        return 12
    }


    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
        cell.textLabel?.text = "Titel \(indexPath.row + 1)"
        return cell
    }

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        print(indexPath.row)
        self.delegate?.songTapped( "Titel \(indexPath.row + 1)" )
    }
}

我的问题是:为什么 ViewController 中的func songTapped(_ title: String)未执行?

1 个答案:

答案 0 :(得分:1)

您正在实例化一个TableViewController对象,但是您没有将它存储到一个强引用中,也没有在ViewController的视图中将其视图添加为子视图

   let tableviewController = storyboard.instantiateViewController(withIdentifier: "myTableViewController") as! TableViewController
   tableviewController.delegate = self

当viewDidLoad函数结束时,变量tableviewController消失