向下滚动时,UISearchBar不会随Tableview一起移动。

我不想单独放置滚动条。这是一个要求。
下面是代码。

customSearchBar = [[UISearchBar alloc] init];
customSearchBar.delegate = self;
[customSearchBar sizeToFit];
objListTable.tableHeaderView = customSearchBar;

最佳答案

需要包括一个View并在其上添加UISearchbar,否则需要提供Header视图的高度。默认情况下将其视为0.0。

如果要使用

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

该方法分配具有默认UISeachBar高度的高度的View。并在上面添加UISearchBar

否则,在代码上添加UIView,默认UISearchBar高度,在其上添加UISearchBar。它会按预期工作。

关于ios - 向下滚动时UISearchBar不随Tableview一起移动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14708547/

10-13 23:54