Skip to content

Instantly share code, notes, and snippets.

@seyhunak
Forked from odrobnik/Refreshable.swift
Created May 1, 2017 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seyhunak/11e443c880c00a583a6b9ad78e9e0938 to your computer and use it in GitHub Desktop.
Save seyhunak/11e443c880c00a583a6b9ad78e9e0938 to your computer and use it in GitHub Desktop.
@objc protocol Refreshable
{
/// The refresh control
var refreshControl: UIRefreshControl? { get set }
/// The table view
var tableView: UITableView! { get set }
/// the function to call when the user pulls down to refresh
@objc func handleRefresh(_ sender: Any);
}
extension Refreshable where Self: UIViewController
{
/// Install the refresh control on the table view
func installRefreshControl()
{
let refreshControl = UIRefreshControl()
refreshControl.tintColor = .primaryColor
refreshControl.addTarget(self, action: #selector(handleRefresh(_:)), for: .valueChanged)
self.refreshControl = refreshControl
if #available(iOS 10.0, *)
{
tableView.refreshControl = refreshControl
}
else
{
tableView.backgroundView = refreshControl
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment