0
firebaseからtableviewに一度にすべての日付をロードしていますが、一番下には再び10の項目は以下のあなたがindexPath.row == items.count - 1
のようなものを確認することがcellForRowAtIndexPath
デリゲートメソッドで私のコードスクロール・ボトム・スクロール時に10個のアイテムをロードすると、テーブルビューios、swift、Firebase上にさらに多くのアイテムがロードされます
extension ViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let item = items[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "inciCell") as!
IncidentCell
cell.delegate = self
cell.setupCell(with: item, indexPath)
return cell
}
}