我有一个 UITableView 来显示搜索结果。用户通过滚动到末尾来加载更多结果。当服务器没有更多结果时,我想在表格视图的末尾显示一个文本,上面写着“没有更多的搜索结果”。我尝试了以下代码,但它不起作用。任何关于正在发生的事情的建议将不胜感激。
UILabel *endLabel = [[UILabel alloc] init];
endLabel.text = @"No more results to display";
[endLabel sizeToFit];
self.tableView.tableFooterView = endLabel;
[self.tableView reloadData];