我遇到一个问题,当用户滚动表格时,titleForHeaderInSection与UISearch字段重叠。
我正在使用以下代码来抵消我在sectionIndexTitlesForTableView与Cancel按钮重叠的地方遇到的先前问题。现在我的部分标题与UISearch字段重叠。这是我的代码:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView { searchBar.frame = CGRectMake(0,MAX(0,scrollView.contentOffset.y),320,44);
}
感谢您的任何建议。