GithubHelp home page GithubHelp logo

llrefresh's Introduction

LLRefresh

  • 用Swift实现下拉刷新,上滑加载更多(LLRefresh is a pull&push to refresh library written in Swift)

Features

  • 下拉刷新(pull to refresh )
  • 上滑加载更多(push to load more)
  • 动画(Animation)
  • 自定义(Custom)

Requirements

  • iOS 8.0+
  • Xcode 8.0+
  • Swift 3.0+

Installation

1. CocoaPods

pod 'LXLRefresh'

2. SourceCode

Usage

引入Module

import LLRefresh

使用时可以使用target或者block

  • Block
//1.0 Init
self.tableView.ll_header =  LLRefreshStateHeader {[weak self] _ in
    sleep(2)
    //3.0 Stop Refreshing
    self?.tableView.ll_header?.endRefreshing()
}
//2.0 Begin refreshing
self.tableView.ll_header?.beginRefreshing()
  • Target
tableView.ll_header = LLRefreshStateHeader(target: self, action: #selector(loadNewData))
tableView.ll_header?.beginRefreshing()
 func loadNewData()  {
    //update data
    sleep(2)
    //end refreshing
    tableView.ll_header?.endRefreshing()
    tableView.reloadData()
  }

具体使用和自定义可以下载demo查看

Demo

  1. Noraml refresh header

normal

  1. Refresh header with BgImage

bgheader

  1. Refresh header with Gif

bgheader

  1. Refresh footer

footer

llrefresh's People

Contributors

lves avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

dragonhn

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.