以编程方式重置 UISearchController 中的搜索查询字符串

Posted

技术标签:

【中文标题】以编程方式重置 UISearchController 中的搜索查询字符串【英文标题】:Resetting the search query string in UISearchController programmatically 【发布时间】:2018-07-13 15:17:57 【问题描述】:

我未能以编程方式重置/替换搜索查询字符串。我试图从 UISearchControllerDelegate 中修改 UISearchBar 查询字符串。

我正在使用听写输入。

当命令“删除”时,searchController.searchBar.text 应该设置回@""。语音检测应继续使用空字符串正常进行。

查询字符串确实重置为@"",但语音检测停止。

如何,并且仍然能够使用语音继续输入?

- (void)updateSearchResultsForSearchController:(nonnull UISearchController *)searchController 
    NSString *searchQuery = self.searchController.searchBar.text;

    // Deletion command
    if ([self.searchController.searchBar.text hasSuffix:@"delete"]) 

        // Things that I've tried that don't work
        //[self.searchController.searchBar setText:@""];
        //self.searchController = [self.searchController init];
        //self.searchController.searchBar.text = @"";

        searchQuery = @"";
    

【问题讨论】:

【参考方案1】:

此功能在 ios 中尚不可用。一旦您尝试清除 searchBar 的 TextField 中的文本,它就会将键盘模式更改为键盘输入。

因此,结论是,您只能使用听写向 textField 提供输入,但无法清除它。用户必须手动执行该过程才能再次更改为听写输入。

希望对你有帮助。

【讨论】:

同样的结论,不支持也不可能从代码重新激活语音输入。

以上是关于以编程方式重置 UISearchController 中的搜索查询字符串的主要内容,如果未能解决你的问题,请参考以下文章

以编程方式重置 UISearchController 中的搜索查询字符串

如何以编程方式清除/重置 React-Select?

无法以编程方式在循环中重置 vuetify v-select

如何在 Android SDK 26 或更高版本上以编程方式重置锁屏密码

如何以编程方式重置或取消选中 Angular 中的单选按钮?

以编程方式添加新的 jquery-select2-4 选项并重置搜索字段?