UISearchController混淆了细胞布局

时间:2016-05-23 11:00:37

标签: ios swift uitableview uisearchbar

我在this教程后面的应用程序中使用UISearchController

现在已经设置了自定义UITableViewCellUISearchController与我的细胞混在一起。

似乎UISearchController未使用相同的自定义UITableViewCell,并且它的视图边界与我自己的UITableView不同。当我按下取消按钮时,有没有办法改变它?

修改

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

虽然没有人回答,但我找到了一个解决方案:

  1. 确保您的单元格已连接到实际的tableView,而不是仅限主要的。 (我使用了Outlet并只设置了我的插座的单元格)

  2. 确保始终处理自定义单元格中的插座。因为我用过这个

    cell.textLabel?.text =“Hello”

  3. 我的单元格将自动转换为默认单元格。