您好在我的应用程序中,我将数据追加到数组中,然后将行插入到表格视图中
self.table.beginUpdates()
self.datasource.append(Data)
self.table.insertRows(at: [IndexPath(row: self.datasource.count-1, section: 0)], with: .automatic)
self.table.endUpdates()
在此代码中一切都工作正常,现在当我想滑动刷新所有行但我不想使用table.reloadData时,因为它会删除所有记录并显示白屏一秒钟,所以我想重新加载所有不使用它的行
我正在尝试以这种方式,但是它使应用程序崩溃
@objc func handleRefresh(_ refreshControl: UIRefreshControl) {
if (datasource.count > 0 ){
datasource.removeAll()
page_num = 1
get_past_orders(page: page_num)
self.isLoading = false
refreshControl.endRefreshing()
}
}
应用程序崩溃
self.table.endUpdates()
Thread 1: EXC_BAD_ACCESS (code=1, address=0x20)
最佳答案
您的方法是正确的:
您还必须将新项目添加到“项目列表”中
items.append(newItem)
let selectedIndexPath = IndexPath(row: items.count - 1, section: 0)
tableView.beginUpdates()
tableView.insertRows(at: [selectedIndexPath], with: .automatic)
tableView.endUpdates()
就这样 :)
编辑:示例
一个非常适合我的小例子:
class ViewController: UIViewController {
struct Item {
var field_a: String
var field_b: Bool
var field_c: Int
}
// MARK: - properties
var items = [Item]()
// MARK: - object-properties
let tableView = UITableView()
let addButton = UIButton()
// MARK: - system-methods
override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(tableView)
tableView.addSubview(addButton)
addButton.titleLabel?.text = "ADD"
addButton.titleLabel?.textColor = .white
addButton.backgroundColor = .blue
addButton.addTarget(self, action: #selector(handleButton), for: .touchUpInside)
tableView.dataSource = self
addButton.anchor(top: nil, leading: nil, bottom: view.bottomAnchor, trailing: view.trailingAnchor, padding: UIEdgeInsets(top: 0, left: 0, bottom: 24, right: 24), size: CGSize(width: 84, height: 48))
tableView.anchor(top: view.topAnchor, leading: view.leadingAnchor, bottom: view.bottomAnchor, trailing: view.trailingAnchor)
prepareItems()
}
// MARK: - preparation-methods
func prepareItems() {
items.append(Item(field_a: "cell1", field_b: false, field_c: 0))
items.append(Item(field_a: "cell2", field_b: false, field_c: 0))
items.append(Item(field_a: "cell3", field_b: false, field_c: 0))
}
// MARK: - helper-methods
func appendNewItem(_ item: Item) {
items.append(item)
let selectedIndexPath = IndexPath(row: items.count - 1, section: 0)
tableView.beginUpdates()
tableView.insertRows(at: [selectedIndexPath], with: .automatic)
tableView.endUpdates()
}
// MARK: - action-methods
@objc func handleButton() {
appendNewItem(Item(field_a: "new Cell", field_b: true, field_c: 0))
}
}
extension ViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell()
let currItem = items[indexPath.row]
cell.textLabel?.text = currItem.field_a
return cell
}
}
仅供参考:.anchor()是我编写的一种方法。 -设置所有AutoLayout-Constraints。
关于ios - 重新加载行而不调用tableview.reload,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52832594/