rathahin / RHRefreshControl

Abstract RefreshControl for freedom customization
http://nsdesigner.mobi
MIT License
69 stars 9 forks source link

RHRefreshControl

RHRefreshControl is just another simple custom RefreshControl which allow you to customize the appearance and behavior of RefreshControl for your app. With this simple library, you would save few hours to write code to implement with UIScrollView.

Getting Started

platform :ios, "6.0"

pod 'RHRefreshControl'

Classes Reference

Initiate


RHRefreshControl *refreshControl = [[RHRefreshControl alloc]
                                    initWithConfiguration:refreshConfiguration];

Configuration


RHRefreshControlConfiguration *refreshConfiguration = [[RHRefreshControlConfiguration alloc] init];

refreshConfiguration.refreshView = RHRefreshViewStylePinterest;

CutomRefreshView *customRefreshView = [[CutomRefreshView alloc]
                                       initWithFrame:CGRectMake(0, 0, 320, 60)];

RHRefreshControlConfiguration *refreshConfiguration = [[RHRefreshControlConfiguration alloc] init];

refreshConfiguration.refreshView = customRefreshView;

Custom Refresh View

Special Thanks

License

See LICENSE.

Todo