其实我的 TableView 的背景颜色真的是黑色的。 但是,当我使用 SearchBar 和搜索词时,如果没有匹配的数据,则会出现白色的“NO Result”UITableView。 如果没有匹配词,我不想出现带有“NO Result” TableViewCell 的白色背景。 我怎样才能删除那个 White UITableViewCell?
如果没有匹配的结果,我想删除 No Result TableView。
tableView 是自动生成的,因为它是搜索的一部分,但是您可以通过以下操作进行修改:
noResultsToDisplay = YES
,否则设置为NO
。if (noResultsToDisplay) return 3;
if (noResultsToDisplay && indexPath.row == 2) cell.textLabel.text = @"No Results";
关于ios - 如何在iOS中删除UITableViewCell的No Result TableView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10178794/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |