Skip to content

Instantly share code, notes, and snippets.

@ManWithBear
Forked from odrobnik/Refreshable.swift
Created May 1, 2017 15:57
Show Gist options
  • Save ManWithBear/08ea8eb12ba843b883226b679b08e6be to your computer and use it in GitHub Desktop.
Save ManWithBear/08ea8eb12ba843b883226b679b08e6be 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