需要帮助UISearchBar和NSString

时间:2010-05-02 16:33:47

标签: iphone nsstring uisearchbar

如果UISearchBar的值等于“”或多个没有单词和字符的空格,我想制作一个以这种方式检查我的UISearchBar值的if命令,弹出一个警告。 好吧,我不需要帮助创建警报,但我确实需要if命令和空格的帮助。 我知道怎么用多个“if”命令来做,但我想只用1。

谢谢!

1 个答案:

答案 0 :(得分:2)

如果我正确理解了这个问题,你想检查空格。

if ([[theSearchBarText stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] length] == 0){
    // Search string is empty
}