当我们单击第一个单元格按钮时,tableviewcell内的按钮充当最后一个单元格

时间:2019-07-18 11:23:03

标签: ios swift xcode

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    var requestedDict =  self.arr3[indexPath.row].dictionaryValue

    let cell:MasterCell = tableView.dequeueReusableCell(withIdentifier: "MasterCell") as! MasterCell

    cell.btn2.setTitle("Accept", for: .normal)
    cell.btn2.addTarget(self, action: #selector(self.can(_:)), for: .touchUpInside)

    cell.selectionStyle = .none
}

0 个答案:

没有答案