你好,我在应用程序中将数据追加到数组中,然后将行插入到表格视图中
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)
答案 0 :(得分:0)
您的方法是正确的:
您还必须将新项目添加到“项目列表”中
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
}
}
fyi:.anchor()是我编写的一种方法。 -设置所有AutoLayout-Constraints。
答案 1 :(得分:0)
如果您想重新加载tableView的行而不每次都调用tableView的reload方法。 您可以使用
self.itemTableView.reloadRows(at: [NSIndexPath(row: 0, section: 0) as IndexPath], with: .automatic)
您可以在
位置插入所需的IndexPath值(要重新加载)。[NSIndexPath(row: 0, section: 0) as IndexPath]
并带有:是UITableViewRowAnimation类型的类型,您要重新加载动画。它提供了许多选项,例如.automatic,.bottom,.fade,.middle,.top,.left,.right和.none等。
这些所有动画选项为您提供了不同的方式来重新加载具有不同类型的表格行。
答案 2 :(得分:0)
使用Objective-C:
[self.tableView beginUpdates];
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPathOfYourCell, nil] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];