RCRefreshControl 0.0.4

RCRefreshControl 0.0.4

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Nov 2015

Maintained by RCRefreshControl.



  • By
  • c0ming

Simple Refresh Control Framework.

Usage

  • Use Just Like a UIRefreshControl
RCRefreshControl *refreshControl = [[RCRefreshControl alloc] init];
refreshControl.delegate = self;
[self.tableView addSubview:refreshControl];
  • RCRefreshControlDelegate
- (CGFloat)heightOfRefreshControl:(RCRefreshControl *)refreshControl;

- (void)refreshControlDidBeginPulling:(RCRefreshControl *)refreshControl;
- (void)refreshControlDidEndPulling:(RCRefreshControl *)refreshControl;

- (void)refreshControlDidBeginRefreshing:(RCRefreshControl *)refreshControl;
- (void)refreshControlDidEndRefreshing:(RCRefreshControl *)refreshControl;

- (void)refreshControl:(RCRefreshControl *)refreshControl pullingProgress:(CGFloat)progress;

Installation

Just add RCRefreshControl.h/m files to your Project,

or use CocoaPods.

pod 'RCRefreshControl', '0.0.4'

License

The MIT License (MIT)