gpt4 book ai didi

swift - 搜索 UITableView 详细信息TextLabel 和 textLabel

转载 作者:行者123 更新时间:2023-11-30 13:53:55 25 4
gpt4 key购买 nike

我正在使用此 Stackoverflow URL How do I link the search bar to display results in swift/xcode 中显示的相同代码

我想知道是否还有一种方法可以搜索detailTextLabel,因为我在单元格中包含了副标题。执行过滤搜索时,字幕也不会与文本标签保持对齐。我正在 Xcode 7.1 和 Swift 2.0 中工作

最佳答案

是的,您可以这样做。在filterContentForSearchText函数下,只需使用“||”返回标题或副标题是否包含搜索字符串的 bool 值运算符。

例如,

func filterContentForSearchText(searchText: String, scope: String = "All") {
filteredObjects = objects.filter { object in

return object.title.lowercaseString.containsString(searchText.lowercaseString) || object.subtitle.lowercaseString.containsString(searchText.lowercaseString)

}

tableView.reloadData()
}

关于swift - 搜索 UITableView 详细信息TextLabel 和 textLabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33894300/

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