Вот мой код для Refre sh Control. (Код был обновлен с помощью всего кода ViewController для лучшего понимания)
import UIKit
class AirportTableViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, AirportRequestDelegate {
@IBOutlet weak var airportTable: UITableView!
var airportRequest = AirportRequest()
var airportList = [AirportDetail]()
var refreshControl = UIRefreshControl()
override func viewDidLoad() {
super.viewDidLoad()
self.title = "Airport List"
airportTable.delegate = self
airportRequest.delegate = self
airportRequest.fetchAirports()
airportTable.dataSource = self
refreshControl.addTarget(self, action: #selector(refresh), for: UIControl.Event.valueChanged)
airportTable.addSubview(refreshControl)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return airportList.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let myCell = airportTable.dequeueReusableCell(withIdentifier: "airportTableCell", for: indexPath)
myCell.textLabel?.text = self.airportList[indexPath.row].AirportName
myCell.detailTextLabel?.text = self.airportList[indexPath.row].StationName
myCell.accessoryType = .disclosureIndicator
return myCell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.airportTable.deselectRow(at: indexPath, animated: true)
}
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
self.airportList.remove(at: indexPath.row)
airportTable.deleteRows(at: [indexPath], with: .top)
}
}
// The AirportRequestDelegate adds this function and is called once airport list is fetched
func didUpdateAirports(_ airportRequest: AirportRequest, airports: [AirportDetail]) {
// copies the airport list to a local variable so that it can be used with the tableView delegate functions
self.airportList = airports
// updating the UI
DispatchQueue.main.async {
self.airportTable.reloadData()
self.refreshControl.endRefreshing()
}
}
@objc func refresh(sender: UIRefreshControl) {
airportRequest.fetchAirports()
}
}
На рисунке ниже вы можете видеть, что анимация работает не так, как ожидалось. Как я могу это исправить. Желательно, чтобы анимация продолжалась до тех пор, пока tableView не будет обновлен.