RHRefreshControl *refreshControl = [[RHRefreshControl alloc]
initWithConfiguration:refreshConfiguration];
预设样式
配置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;
查看 LICENSE。