我想添加自定义头UITableView
,有一些按钮和UISearchBar
。 问题是,当我尝试使用搜索栏我得到一个消息:
setting the first responder view of the table but we don't know its type (cell/header/footer)
有没有人遇到过这样的问题吗?
我想添加自定义头UITableView
,有一些按钮和UISearchBar
。 问题是,当我尝试使用搜索栏我得到一个消息:
setting the first responder view of the table but we don't know its type (cell/header/footer)
有没有人遇到过这样的问题吗?
你是通过添加表:
[self.tableView addSubview:customView]
如果是这样,那可能是你的错误。 添加子视图的UITableView,您需要添加它们既可以作为页眉,页脚,或细胞明确。 尝试:
self.tableView.tableHeaderView = customView
只要按照这里的简单步骤..
使用下面的委托方法将其设置为你的表视图的头...
– (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { return self.mySearchBar; }