2

我有一个使用 UISearchDisplayController 过滤的 UITableView。我想让我的用户搜索一个项目。如果他们搜索说“橙汁”,我希望在“搜索表视图”中的页脚中有一个按钮,显示“添加橙汁”。取而代之的是,将“无结果”文本替换为“添加橙汁”也足够了。关于如何实现这一点的任何建议?

4

1 回答 1

0

您可以实现两个 UITableViewDelegate 方法以获得页脚视图

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;
于 2013-01-21T20:30:37.563 回答