我正在尝试向UITableView
添加自定义标头,其中包含一些按钮和UISearchBar
。
问题是,当我尝试使用searchBar时,我收到一条消息:
setting the first responder view of the table but we don't know its type (cell/header/footer)
有没有人遇到过这样的问题?
答案 0 :(得分:-1)
您是否通过以下方式添加到表格中:
[self.tableView addSubview:customView]
如果是这样,那可能是你的错误。将子视图添加到UITableView要求您明确地将它们添加为页眉,页脚或单元格。尝试:
self.tableView.tableHeaderView = customView