在界面构建器中,我对原型单元格进行了选择选择,我还将它们用作重用的标识符。我还使用搜索控制器在同一tableView上显示搜索结果。选择顺序似乎不适用于搜索结果。
我正在使用以下代码填充单元格:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
var cell = tableView.dequeueReusableCell(withIdentifier: "Cell")
if cell == nil {
cell = UITableViewCell(style: .value1, reuseIdentifier: "Cell")
}
if tableView == resultsController.tableView
{
// loading data in cell
}
else
{
// loading data in cell
}
return cell!
}
我尝试为选择了表格视图单元格的搜索结果单元格添加以下行: performSegue(withIdentifier:“ unWindFromSelectCountryIdentifier”,发件人:self)
这也不起作用。
我在这里做错了什么?我可以在这里以编程方式为细胞设置选择序列吗?