Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 .xib 中创建了一个 UI 搜索栏,并将其连接到委托,并将其连接到 .h 文件/.m 文件。我想知道在输入搜索栏时是否可以通过按回车键来关闭键盘。我知道如何使用文本字段来做到这一点,但我似乎无法通过搜索栏实现它。
任何帮助表示赞赏。谢谢!
确保您的 uisearchbar 已连接到您的视图委托。
之后转到 .h 文件并包含 UISearcBarDelegate
然后转到 .m 文件并实现此代码
-(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar { [self.yourSearchBar resignFirstResponder]; }
希望有帮助...