# ZLSwiftRefresh **Repository Path**: Ajrui/ZLSwiftRefresh ## Basic Information - **Project Name**: ZLSwiftRefresh - **Description**: swift pull refresh or loadMore refresh - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-06-05 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ZLSwiftRefresh #### Default Support Refresh (默认支持的动画) ![image](https://github.com/MakeZL/ZLSwiftRefresh/blob/master/refreshDemo1.gif) ![image](https://github.com/MakeZL/ZLSwiftRefresh/blob/master/refreshDemo6.gif) #### UITableView Refresh ![image](https://github.com/MakeZL/ZLSwiftRefresh/blob/master/refreshDemo2.gif) #### UICollectionView/UIWebView ![image](https://github.com/MakeZL/ZLSwiftRefresh/blob/master/refreshDemo3.gif) ![image](https://github.com/MakeZL/ZLSwiftRefresh/blob/master/refreshDemo4.gif) #### Custom Animation View(自定义动画View) ![image](https://github.com/MakeZL/ZLSwiftRefresh/blob/master/refreshDemo5.gif) This is Swift UITableView/CollectionView pull Refresh Lib. ------- ## Use // 下拉刷新(Pull to Refersh) self.tableView.toRefreshAction({ () -> () in println("toRefreshAction success") }) // 上拉刷新(Pull to LoadMore) self.tableView.toLoadMoreAction({ () -> () in println("toLoadMoreAction success") // OK self.tableView.endLoadMoreData() }) // 马上刷新(Now to Refresh) self.tableView.toLoadMoreAction({ () -> () in println("toLoadMoreAction success") }) Continue to update!