All Projects → mengxianliang → XLRefresh

mengxianliang / XLRefresh

Licence: other
iOS 下拉刷新工具

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to XLRefresh

Closures
Swifty closures for UIKit and Foundation
Stars: ✭ 1,720 (+6780%)
Mutual labels:  uitableview, uicollectionview, uiscrollview
Persei
Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift
Stars: ✭ 3,395 (+13480%)
Mutual labels:  uitableview, uicollectionview, uiscrollview
Gskstretchyheaderview
A generic stretchy header for UITableView and UICollectionView
Stars: ✭ 1,624 (+6396%)
Mutual labels:  uitableview, uicollectionview, uiscrollview
Mylinearlayout
MyLayout is a powerful iOS UI framework implemented by Objective-C. It integrates the functions with Android Layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,PathLayout,GridLayout,LayoutSizeClass to build your App 自动布局 UIView UITab…
Stars: ✭ 4,152 (+16508%)
Mutual labels:  uitableview, uicollectionview, uiscrollview
Baraba
Make your UIScrollView scroll automatically when user is looking 👀 by tracking face using ARKit and AVFoundation
Stars: ✭ 268 (+972%)
Mutual labels:  uitableview, uicollectionview, uiscrollview
Tysnapshotscroll
一句代码保存截图,将 UIScrollView UITableView UICollectionView UIWebView WKWebView 网页 保存 为 长图 查看。Save the scroll view page as an image,support UIScrollView,UITableView,UICollectionView,UIWebView,WKWebView.(Support iOS13)
Stars: ✭ 709 (+2736%)
Mutual labels:  uitableview, uicollectionview, uiscrollview
Vbpiledview
Simple and beautiful stacked UIView to use as a replacement for an UITableView, UIImageView or as a menu
Stars: ✭ 164 (+556%)
Mutual labels:  uitableview, uicollectionview
Hgplaceholders
Nice library to show placeholders and Empty States for any UITableView/UICollectionView in your project
Stars: ✭ 2,048 (+8092%)
Mutual labels:  uitableview, uicollectionview
Flowkit
A declarative type-safe framework for building fast and flexible list with Tables & Collection
Stars: ✭ 215 (+760%)
Mutual labels:  uitableview, uicollectionview
IQListKit
Model driven UITableView/UICollectionView
Stars: ✭ 51 (+104%)
Mutual labels:  uitableview, uicollectionview
Skeletonview
☠️ An elegant way to show users that something is happening and also prepare them to which contents they are awaiting
Stars: ✭ 10,804 (+43116%)
Mutual labels:  uitableview, uicollectionview
Tabanimated
A skeleton screen framework based on native for iOS. (一个由iOS原生组件映射出骨架屏的框架,包含快速植入,低耦合,兼容复杂视图等特点,提供国内主流骨架屏动画的加载方案,同时支持上拉加载更多、自定制动画。)
Stars: ✭ 2,909 (+11536%)
Mutual labels:  uitableview, uicollectionview
Cyanic
Declarative, state-driven UI framework
Stars: ✭ 32 (+28%)
Mutual labels:  uitableview, uicollectionview
Genericdatasource
A generic small reusable components for data source implementation for UITableView/UICollectionView in Swift.
Stars: ✭ 127 (+408%)
Mutual labels:  uitableview, uicollectionview
Rglistkit
RGListKit is a Protocol & MVVM based framework to easily populate a UITableView or UICollectionView via single api.
Stars: ✭ 178 (+612%)
Mutual labels:  uitableview, uicollectionview
Squaremosaiclayout
An extandable mosaic UICollectionViewLayout with a focus on extremely flexible customizations 🔶
Stars: ✭ 243 (+872%)
Mutual labels:  uitableview, uicollectionview
ios ui recipe showcase
iOSアプリ開発 - UI実装であると嬉しいレシピブック掲載サンプル
Stars: ✭ 54 (+116%)
Mutual labels:  uitableview, uicollectionview
PagedLists
Paginated UITableView and UICollectionViews for iOS.
Stars: ✭ 69 (+176%)
Mutual labels:  uitableview, uicollectionview
2DUICollectionViewSwift
A simple and elegant 2Dimensional UICollectionView which is most commonly used in ecommerce apps, music streaming apps etc. Easily customisable as per your requirements as it is designed keeping the superset requirement in mind. Developed in latest Swift syntax.
Stars: ✭ 28 (+12%)
Mutual labels:  uicollectionview, uiscrollview
GenericCells
Creating generic UITableViewCells and UICollectionViewCells instead of subclasses.
Stars: ✭ 81 (+224%)
Mutual labels:  uitableview, uicollectionview

XLRefresh

功能说明

  • 下拉刷新、上拉加载
  • 手动刷新、加载
  • 支持UITableView、UICollectionView、UIWebView、UIScrollView
  • 支持Block方式和代理方式的回调方法

显示效果

UITableView UICollectionView UIWebView
image image image

使用方法

代理方式创建:

_tableView.xl_header = [XLRefreshHeader headerWithRefreshingTarget:self refreshingAction:@selector(refreshMethod)];

_tableView.xl_footer = [XLRefreshFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreMethod)];

block方式创建:

_tableView.xl_header = [XLRefreshHeader headerWithRefreshingBlock:^{
        
}];

_tableView.xl_footer = [XLRefreshFooter footerWithRefreshingBlock:^{
        
}];

手动刷新:

[_tableView.xl_header startRefreshing];

[_tableView.xl_footer startRefreshing];

结束刷新:

[_tableView.xl_header endRefreshing];

[_tableView.xl_footer endRefreshing];

个人开发过的UI工具集合 XLUIKit

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].