我试图让用户无限滚动屏幕以获取更多斐波那契数。我最多只能显示fib数量,即posts
数组的长度。这是现在的样子。 我无法实现scrollViewDidScroll
函数来实现无限滚动。我在stackoverflow上找到了一些对我来说很有意义的代码,但是我不知道该怎么做才能将其连接到tableview(需要调用更多数据的部分)。任何输入表示赞赏!
import UIKit
class FeedTableViewController: UITableViewController {
let posts : [String] = ["","","","","","","",""]
var fibArray: [Int] = [0,1]
let cellIdentifier = "userPostFeedCell"
var indexOfPageToRequest = 1
override func scrollViewDidScroll(_ scrollView: UIScrollView) {
let offsetY = scrollView.contentOffset.y
let contentHeight = scrollView.contentSize.height
if offsetY > contentHeight - scrollView.frame.size.height {
// increments the number of the page to request
indexOfPageToRequest += 1
// call your API for more data
// tell the table view to reload with the new data
self.tableView.reloadData()
}
}
func fibonacci(n: Int) -> Int {
if (fibArray.count > n) {
return fibArray[n];
}
let fibonacciNumber = fibonacci(n: n - 1) + fibonacci(n: n - 2)
fibArray.append(fibonacciNumber)
return fibonacciNumber
}
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(
UINib(nibName: "FeedTableViewCell", bundle: nil), forCellReuseIdentifier: cellIdentifier)
}
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return posts.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> FeedTableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
cell.textLabel?.text = "\(fibonacci(n: indexPath.row+1))"
print("cellForRowAt \(indexPath.row)")
return cell as! FeedTableViewCell
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
print("heightForRowAt \(indexPath.row)")
return 40
}
}
答案 0 :(得分:0)
您将很快在斐波那契数列中使Int溢出,因此实际上不需要无限滚动。您只需将部分中的行数设置为高。该应用程序只会创建需要显示的单元格,因此您不会使用大量内存。这是我的代码
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 20000
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
cell.textLabel?.text = "\(fibonacci(n: indexPath.row+1))"
return cell
}