Skip to content

Pole-he/IOS_SpinRefresh

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

IOS_SpinRefresh

PullRefresh and LoadMore with SpinKit SVPullToRefresh

Easy to Integrate SpinRefresh in your project

Screenshots

push.gif

Properties

Spinkit:

    // setup pull-to-refresh
    [self.tableView addPullToRefreshWithActionHandler:^{
        [weakSelf insertRowAtTop];
    } spin:RTSpinKitViewStyleBounce];
    
    // setup infinite scrolling
    [self.tableView addInfiniteScrollingWithActionHandler:^{
        [weakSelf insertRowAtBottom];
    } spin:RTSpinKitViewStyleBounce];

Other:

    // setup pull-to-refresh
    [self.tableView addPullToRefreshWithActionHandler:^{
        [weakSelf insertRowAtTop];
    }];
    
    // setup infinite scrolling
    [self.tableView addInfiniteScrollingWithActionHandler:^{
        [weakSelf insertRowAtBottom];
    } bubbleRefresh:YES];

About

PullToRefresh with Spinkit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published