ios UITable仅查看向下滚动

9jyewag0  于 2023-02-01  发布在  iOS
关注(0)|答案(1)|浏览(106)

我想配置一个UITableView,使它只能向下滚动,换句话说,禁止表格视图向上滚动,该怎么做呢?

pbgvytdp

pbgvytdp1#

详情

  • xcode 14.2
  • 斯威夫特5.7.2

溶液

import UIKit

class ViewController: UIViewController {
    private weak var tableView: UITableView!
    private var previousContentOffset = CGPoint()
    override func viewDidLoad() {
        super.viewDidLoad()
        let tableView = UITableView()
        tableView.translatesAutoresizingMaskIntoConstraints = false
        view.addSubview(tableView)
        tableView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true
        tableView.leftAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leftAnchor).isActive = true
        tableView.rightAnchor.constraint(equalTo: view.safeAreaLayoutGuide.rightAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor).isActive = true
        self.tableView = tableView
        tableView.delegate = self
        tableView.dataSource = self
        tableView.backgroundColor = .gray
    }
}

// MARK: UITableViewDelegate

extension ViewController: UITableViewDelegate {
    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        if scrollView === tableView {
            if previousContentOffset.y > scrollView.contentOffset.y {
                scrollView.contentOffset.y = previousContentOffset.y
            }
            previousContentOffset = scrollView.contentOffset
        }
    }
}

// MARK: UITableViewDataSource

extension ViewController: UITableViewDataSource {
    func numberOfSections(in tableView: UITableView) -> Int { 1 }
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 1000 }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell()
        cell.textLabel?.text = "\(indexPath)"
        return cell
    }
}

相关问题