gpt4 book ai didi

swift 4 在 UIRefeshControl 之前清空 UITableView

转载 作者:行者123 更新时间:2023-11-28 10:37:59 25 4
gpt4 key购买 nike

大家好!我在更新数据时遇到了一点问题。我使用 JSON-RPC 从后端获取信息并填充我的 TableView 单元格。我在我的 TableView 中实现了 UIRefreshContol,所以现在当我拉动刷新时,它会在旧信息之上为我提供新信息。所以我有一个产品列表,当我添加一些产品并刷新 tableView 以获取更新信息时,tableView 会给我旧信息和旧信息之上的新信息在我从 JSON 获取更新信息之前,有什么方法可以清空表吗?

//这是我的 JSON

func getJSONresponse() {
getResponse(o_method: "search_read", o_model: "res.users", o_domain:[["id", "=", jkID]], o_fields: ["name","partner_id"]) { (result) -> () in
//print(result)
if result != JSON.null {
let partner_id = result[0]["partner_id"][0].int!
getResponse(o_method: "search_read", o_model: "res.partner", o_domain: [["id", "=", partner_id]], o_fields: ["name", "kato"], completion: { (result)->() in
//print(result)
let id = result[0]["kato"][0].int!
katoID = id
print("adiasodjasoid",katoID)
getResponse(o_method: "search_read", o_model: "property.building", o_domain: [], o_fields: ["name","kato_area"], completion: { (result)->() in

result.forEach({ (temp) in

var area:String = "", name:String = "", totID: Int = 0

if (temp.1["kato_area"].string != nil) {
area = temp.1["kato_area"].string!
}
if (temp.1["name"].string != nil) {
name = temp.1["name"].string!
}
if (temp.1["id"].int != nil) {
totID = temp.1["id"].int!
}

let newModel = resUser(area: area, name: name, id: totID)
self.data.append(newModel)
})
DispatchQueue.main.async {
self.tableView.reloadData()
}
// print(self.data)
})
})
}
}
}

这是我的下拉刷新功能

@objc func refreshData() {

tableView.reloadData()
getJSONresponse()
self.tableView.contentInset = UIEdgeInsets(top: 80, left: 0, bottom: 0, right: 0)
DispatchQueue.main.asyncAfter(deadline: .now() + 3.0) {
self.refresher.endRefreshing()
self.tableView.contentInset = UIEdgeInsets.zero
self.tableView.setContentOffset(.zero, animated: true)
}
}

最佳答案

那么您必须将 UITableView 绑定(bind)到一个数组,有些人也可能将其称为数据源。

基本上流程是这样的:

1) 创建一个可变数组/数据源(这将保存所有 JSON)。

2) 对应UITableView的行数方法返回这个数组/数据源的计数。

3) 当你按下刷新。删除数组/数据源的所有内容(removeAll)

4) 收到后端的响应后,将它们添加到数组/数据源并在 UITableView 对象上调用 reloadData。

希望对您有所帮助。代码和繁荣!!

关于swift 4 在 UIRefeshControl 之前清空 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52366026/

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