Я создал образец контроллера вида для этого.надеюсь, это поможет вам.Я добавил две кнопки в качестве индикаторов (сверху и снизу).надеюсь, это вам поможет.
Вот так выглядит ViewController
Код:
//
// ViewController.swift
// Assignment
//
// Created by Anuradh Caldera on 4/16/19.
// Copyright © 2019 All rights reserved.
//
import UIKit
class ViewController: UIViewController {
private var customtableView: UITableView!
private var cellidentifier = "cellIdentifier"
private var topButton: UIButton!
private var bottomButton: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
setuptableview()
setupButtons()
}
}
extension ViewController {
fileprivate func setuptableview() {
customtableView = UITableView(frame: .zero, style: .plain)
customtableView.translatesAutoresizingMaskIntoConstraints = false
customtableView.register(UITableViewCell.self, forCellReuseIdentifier: cellidentifier)
customtableView.dataSource = self
customtableView.delegate = self
view.addSubview(customtableView)
let customtableviewConstraints = [customtableView.leftAnchor.constraint(equalTo: view.leftAnchor),
customtableView.topAnchor.constraint(equalTo: view.topAnchor, constant: 50),
customtableView.rightAnchor.constraint(equalTo: view.rightAnchor),
customtableView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -50)]
NSLayoutConstraint.activate(customtableviewConstraints)
}
}
extension ViewController {
fileprivate func setupButtons() {
topButton = UIButton()
topButton.translatesAutoresizingMaskIntoConstraints = false
topButton.setTitle("Go Top", for: .normal)
topButton.backgroundColor = .purple
topButton.setTitleColor(.white, for: .normal)
topButton.isHidden = true
view.addSubview(topButton)
let topbuttonConstraints = [topButton.leftAnchor.constraint(equalTo: view.leftAnchor),
topButton.topAnchor.constraint(equalTo: view.topAnchor),
topButton.rightAnchor.constraint(equalTo: view.rightAnchor),
topButton.heightAnchor.constraint(equalToConstant: 50)]
NSLayoutConstraint.activate(topbuttonConstraints)
bottomButton = UIButton()
bottomButton.translatesAutoresizingMaskIntoConstraints = false
bottomButton.setTitle("Go Bottom", for: .normal)
bottomButton.backgroundColor = .purple
bottomButton.setTitleColor(.white, for: .normal)
bottomButton.isHidden = false
view.addSubview(bottomButton)
let bottomButtonConstraints = [bottomButton.leftAnchor.constraint(equalTo: view.leftAnchor),
bottomButton.bottomAnchor.constraint(equalTo: view.bottomAnchor),
bottomButton.rightAnchor.constraint(equalTo: view.rightAnchor),
bottomButton.heightAnchor.constraint(equalToConstant: 50)]
NSLayoutConstraint.activate(bottomButtonConstraints)
}
}
extension ViewController: UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 30 // use your desired number of cells here and change other according to the cell count.
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellidentifier)
cell?.textLabel?.text = "cell \(indexPath.row)"
return cell!
}
}
extension ViewController: UITableViewDelegate, UIScrollViewDelegate {
func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
topButton.isHidden = true
bottomButton.isHidden = false
}
func scrollViewDidScroll(_ scrollView: UIScrollView) {
let visiblerect = CGRect(origin: customtableView.contentOffset, size: customtableView.bounds.size)
let visiblepoint = CGPoint(x: visiblerect.minX, y: visiblerect.minY)
if let visibleindexpath = customtableView.indexPathForRow(at: visiblepoint) {
if visibleindexpath.row == 0 {
topButton.isHidden = true
} else {
topButton.isHidden = false
}
}
for cell in customtableView.visibleCells {
if let indexpath = customtableView.indexPath(for: cell) {
print("visible cell from cell : \(indexpath.row)")
if indexpath.row == 29 {
bottomButton.isHidden = true
} else {
bottomButton.isHidden = false
}
}
}
}
}
Я создал программный интерфейс, чтобы сделать его понятным.Вы можете использовать это или раскадровку.ура и хорошего дня.