gpt4 book ai didi

swift - 在搜索栏(ModernSearchBar)之后重新加载表格 View

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

我已在我的应用程序 (Modernsearchbar) 上成功设置了此 Pod当我在表格 View 上搜索时,它会正确检索结果(它成功启动了此函数)

func onClickItemWithUrlSuggestionsView(item: ModernSearchBarModel) {
print("User touched this item: "+item.title+" with this url: "+item.url.description)
}

但我不知道如何仅返回结果(重新加载我的 TableView )当我尝试时,我无法关闭 ModernSearchBar。

如果有人有任何线索,我想或者:

  • 选中我的结果并关闭 现代SearchBar

或者

  • 关闭modernSearchBar并重新加载我的TableView,仅包含搜索结果。

预先感谢,我在这里阅读了很多内容,但没有找到任何解决方案..

最佳答案

如果有人有这个问题,请提供帮助:

 My_ModernSearch.searchBarCancelButtonClicked(My_ModernSearch)

对于复选标记,请采用以下内容:

for x in (0..<totalNumberOfRows).reversed() {

let indexPath = IndexPath(row: x, section: 0)
let cell = MyFriendsTableview.cellForRow(at: indexPath)
var MyFriendsLine: MyFriendsModel
MyFriendsLine = self.MyFriendslist[indexPath.row]

if(MyFriendsLine.field1 == item.title) {

if cell?.accessoryType == .checkmark {
cell?.accessoryType = .none
}
else {
cell?.accessoryType = .checkmark

}

关于swift - 在搜索栏(ModernSearchBar)之后重新加载表格 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51213613/

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