uisearchbar iphone 如何获取字符串
我有一个关于 iphone 的 uisearchbar 的问题。我如何才能访问用户在搜索栏中输入的字符串并将其存储在单独的 NSString 中,以便每次输入的击键都会更新?
i have a question regarding uisearchbar for the iphone. How can i get access to the string the user is typing in the search bar and store it in a separate NSString, so it updates for every keystroke entered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将 UISearchBar 委托 设置为一个实现 UISearchBarDelegate< /a> 接口。
每当搜索栏中的文本发生更改时,都会调用方法“searchBar:textDidChange:”。
You setup the UISearchBar delegate to a object that implements the UISearchBarDelegate interface.
The method 'searchBar:textDidChange:' is called whenever the text in the search bar is changed.