gpt4 book ai didi

iphone - 如何检测 UISearchBar 只包含空格

转载 作者:行者123 更新时间:2023-12-03 19:31:09 29 4
gpt4 key购买 nike

如何检测 UISearchBar 是否仅包含空格而不包含任何其他字符或字符串并将其替换为 @""?

最佳答案

您可以使用 NSString stringByTrimmingCharactersInSet 来修剪包含空格的字符集的字符串。消息(使用 whitespaceCharacterSet ):

NSString * searchString = [searchBar.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

if (![searchString length])
// return ... search bar was just whitespace

关于iphone - 如何检测 UISearchBar 只包含空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6521362/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com