titleForHeaderInSection 与 UISearch 字段重叠

发布于 2024-11-07 09:21:49 字数 365 浏览 0 评论 0原文

我遇到一个问题,当用户滚动表格时, 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁杀 2024-11-14 09:21:49

尝试剪切子视图。请参阅类似帖子了解更多信息

try clipping the sub views. Refer this similar post for more information

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文