Swift-自定义UITableViewCell委托给UIViewController只有一个协议可以工作

时间:2016-09-14 00:29:33

标签: ios swift uitableview uiviewcontroller

在应用程序中,我有自己的UIViewController符合的自定义协议。我有一个自定义的tableViewCell类,并在那里有UIImageView和UITextView。我出列后将单元格的委托设置为UIViewController。但是,只有一个自定义协议进行回调(imagepicker协议)。

protocol customProtocol1{
    func pickImage(myInt: Int)
}
protocol customProtocol2{
    func protocol2 (myInt: Int)
}

class controller1: UIViewController, UITableViewDelegate, customProtocol1, customProtocol2  {
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section:Int) -> Int {
        return 3
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 
        let cell = tableView.dequeReusableCellWithIdentifier("customCell",    forIndexPath: indexPath) as! CustomTableCellClass
        cell.delegate = self
        return cell
   }
    func pickImage ( myInt: Int){
        print("This line prints")
   }

   func protocol2 (myInt: Int){
        print ("This line doesn't print")


   }
}

这里是customTableCellClass代码:

class CustomTableCellClass: UITableViewCell, UITextFieldDelegate, UITextViewDelegate {
    var imageDelegate: customProtocol1?
    @IBAction func pickImage( sender: AnyObject) {
        imageDelagate?.pickImage(205)
    }

    var somethingElseDelegate: customProcotol2?
    @IBActon func clickOnButton( sender: AnyObject) {
        print("this line prints")
        somethingElseDelegate?.protocol2(2)
    }

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

我的问题是,为什么第一个协议得到回调但第二个协议没有?

2 个答案:

答案 0 :(得分:7)

根据我在代码中看到的内容,您只需设置一个代理,将代码更改为cellForRowAtIndexPath

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 
    let cell = tableView.dequeReusableCellWithIdentifier("customCell",    forIndexPath: indexPath) as! CustomTableCellClass
    cell.imageDelegate = self
    cell.somethingElseDelegate = self
    return cell
}

答案 1 :(得分:2)

您的custom cell有两个委托属性imageDelegatesomethingElseDelegate,但在tableView(tableView:cellForRowAtIndexPath:)的实施中,您只分配了一个属性。< / p>

如果您设置了这两个属性,那么您的实现应该可以正常工作。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell 
{ 
    let cell = tableView.dequeReusableCellWithIdentifier("customCell", forIndexPath: indexPath) as! CustomTableCellClass
    cell.imageDelegate = self
    cell.somethingElseDelegate = self
    return cell
}