(iPad Dev)有没有办法取消选择搜索栏范围栏中的第一个范围按钮?
当范围栏出现时,始终会选择搜索栏范围栏中的第一个范围按钮。 有没有办法在按钮出现时取消选择该按钮? (我想做的是取消选择所有按钮)
The first scope button in a scope bar of a search bar is always selected when the scope bar is appeared.
Is there a way to deselect the button when it appears? (I want to do is deselect all the buttons)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将
UISearchBar
的selectedScopeButtonIndex
属性设置为-1
即可。Just set
selectedScopeButtonIndex
property ofUISearchBar
to-1
.