iPhone 中导航栏横向模式下 iOS UISearchBar 的高度
我需要横向模式下 searchBar 的帮助。我将其添加到导航栏标题视图 - 居中:
self.searchBarTop = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 80, 30)];
self.navigationItem.titleView = self.searchBarTop;
在横向模式下,它太大而无法正确放置:
有什么建议吗?
I need help with searchBar in landscape mode. I am adding it to the navigationBar titleView - centered:
self.searchBarTop = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 80, 30)];
self.navigationItem.titleView = self.searchBarTop;
In landscape mode it is to big to fit in properly:
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用以下代码找到iphone的方向,然后相应地设置SearchBar的框架。在ViewDidLoad中设置SearchBar的框架(纵向模式)。
它一定会对你有所帮助。
Use the following code to find the Orientation of the iphone and then set accordingly frame of SearchBar.Set the frame of the SearchBar (Portrait mode) in ViewDidLoad.
It will surely help you.
显然这是定制UISearchBar的灰色地带。我设法使用另一种方式将 searchBar 移到导航栏之外。
Obviously this is gray area customizing UISearchBar. I have managed to use another way moving searchBar outside the navigationBar.