- (BOol)searchbar:(UISearchbar *)searchbar shouldChangeTextInRange:(NSRange)range replacementText:(Nsstring *)text{ NSLog(@"String:%@",mainSearchbar.text); return YES;}
但它返回前一个字符串.例如ID我输入“jumbo”,它显示jumb,当我按退格键删除一个项目并使其“jumb”时,它显示jumbo.即搜索栏上的上一个字符串.
我该怎么做才能得到当前的字符串? plsease帮助.
谢谢
Nsstring* newText = [searchbar.text stringByReplacingCharactersInRange:range withString:text]
斯威夫特3:
let newText = (searchbar.text ?? "" as Nsstring).replacingCharacters(in: range,with: text)总结
以上是内存溢出为你收集整理的iphone – 如何在键入时获取当前的搜索栏字符串全部内容,希望文章能够帮你解决iphone – 如何在键入时获取当前的搜索栏字符串所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)