搜索栏的奇怪行为:输入第一个字母后键盘被关闭
在搜索栏中输入第一个字母后,键盘被关闭。
不明白为什么会发生。已经使用过搜索栏很多次了。
我已经使用了
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
这些
-(void)searchBarSearchButtonClicked:(UISearchBar *)sBar
委托方法。
没有做任何其他事情来放弃键盘,但在搜索栏键盘中输入第一个字母后仍然被解雇。
请任何经历过同样问题/有任何线索的人帮助我。
这是代码
-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
if([searchText length]>0)
{ //searching code goes here
}
else if ([searchText length]==0)
{
// code to reload table
}
}
提前致谢。
After typing first letter in search bar keyboard getting dismissed .
Not understanding why it is happning. Already used searchbar so many times.
I have used
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
and
-(void)searchBarSearchButtonClicked:(UISearchBar *)sBar
these delegate methods.
Nothing else done with resigning keyboard but still after typing first letter in searchbar keyboard getting dismissed.
Please any one gone through same issue/ have any clue help me.
here is code
-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
if([searchText length]>0)
{ //searching code goes here
}
else if ([searchText length]==0)
{
// code to reload table
}
}
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论