titleForHeaderInSection 与 UISearch 字段重叠
我遇到一个问题,当用户滚动表格时, titleForHeaderInSection 与 UISearch 字段重叠。
我使用以下代码来解决之前遇到的问题,即sectionIndexTitlesForTableView 与“取消”按钮重叠。现在我的部分标题与 UISearch 字段重叠。这是我的代码:
-(void)scrollViewDidScroll:(UIScrollView *)scrollView { searchBar.frame = CGRectMake(0,MAX(0,scrollView.contentOffset.y),320,44);
感谢
您的任何建议。
I'm having a problem where the titleForHeaderInSection is overlapping the UISearch field when a user scrolls the table.
I'm using the following code to offset a prior problem I had where the sectionIndexTitlesForTableView was overlapping the Cancel button. Now I have the section titles overlapping the UISearch field. Here's the code I have:
-(void) scrollViewDidScroll:(UIScrollView *)scrollView {
searchBar.frame = CGRectMake(0,MAX(0,scrollView.contentOffset.y),320,44);
}
thanks for any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试剪切子视图。请参阅此类似帖子了解更多信息
try clipping the sub views. Refer this similar post for more information