nanoxd
3/22/2015 - 10:50 PM

Setup UIRefreshControl

Setup UIRefreshControl

lazy var refreshControl: UIRefreshControl = {
    let refreshControl = UIRefreshControl()
    refreshControl.addTarget(self, action: "handleRefresh:", forControlEvents: UIControlEvents.ValueChanged)
    
    return refreshControl
}()

@objc func handleRefresh() {
  
}