将UISearchBar作为子视图添加到tableView标头中

时间:2012-04-06 06:47:34

标签: ios uitableview uisearchbar

我正在尝试向UITableView添加自定义标头,其中包含一些按钮和UISearchBar。 问题是,当我尝试使用searchBar时,我收到一条消息:

setting the first responder view of the table but we don't know its type (cell/header/footer)

有没有人遇到过这样的问题?

1 个答案:

答案 0 :(得分:-1)

您是否通过以下方式添加到表格中:

[self.tableView addSubview:customView]

如果是这样,那可能是你的错误。将子视图添加到UITableView要求您明确地将它们添加为页眉,页脚或单元格。尝试:

self.tableView.tableHeaderView = customView