0

即使用户向下滑动,我也尝试保持 UISearchBar 可见,我已经:

  • 添加了一个UITableView&UISearchView作为view.

    • tableViewframe=view.bounds
    • searchBartopLayoutGuide使用自动布局锁定到底部。

但是,因为即使有automaticallyAdjustsScrollViewInsets = truesearchBar覆盖tableView,我如何增加tableView.contentInset.top44 (searchBar高度)?

4

1 回答 1

2

你的意思是这样吗?

UIEdgeInsets insets = tableView.contentInset;
insets.top += 44;
tableView.contentInset = insets;
于 2014-11-05T20:31:06.860 回答