iOS 7 UISearchBar正确间距

前端之家收集整理的这篇文章主要介绍了iOS 7 UISearchBar正确间距前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
不知道为什么,我在iOS 7中的搜索栏正在留下一个合适的空间.在iOS 6中没问题.

我知道它与部分索引有关,因为如果我删除它,空间就会消失,但我不知道如何修复它.有什么想法吗?

解决方法

将UISearchBar嵌入到UIView中,然后将其添加为tableHeaderView.在故事板中以这种方式构建它对我有用.我猜iOS在tableHeaderView中调整了UISearchBar的大小,但是只留下了一个基本的UIView(并且没有费心去查看它).

您可能还想使节索引透明,我做了:

[[UITableView appearance] setSectionIndexBackgroundColor:[UIColor clearColor]];
[[UITableView appearance] setSectionIndexTrackingBackgroundColor:[UIColor clearColor]];
原文链接:https://www.f2er.com/iOS/333117.html

猜你在找的iOS相关文章