邮件应用程序如何在编辑模式下禁用 UISearchBar?
使用 SearchDisplayController
却找不到任何可以实现此目的的方法?
Using a SearchDisplayController
and couldn't find any methods that would accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
切换到编辑模式时尝试此操作:
反向:
您还可以为 alpha 更改设置动画以获取额外的积分:)
Try this when switching to Edit mode:
Reverse with:
You can also animate the alpha change for extra credit :)
查看
UISearchDisplayDelegate
和UISearchBarDelegate
了解搜索栏何时处于编辑模式。下面是一些在搜索栏上添加覆盖层的代码,我改编自此 示例,
在您的 .h 文件中,
在 .m 文件中,
您可以调整 alpha 值,直到它按照您想要的方式显示。
希望这有帮助!
Check out the
UISearchDisplayDelegate
and theUISearchBarDelegate
for knowing when the search bar is in edit mode.Here is some code to add an overlay over the searchBar, which I've adapted from this example,
In your .h file,
And in the .m file,
You can adjust the alpha values until it appears the way you want it to.
Hope this helps!