RHRefreshControl 0.1.beta1

RHRefreshControl 0.1.beta1

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2014年12月

无人认领维护。




  • Ratha Hin
RHRefreshControl 是另一个简单的自定义 RefreshControl,允许您自定义应用中 RefreshControl 的外观和行为。使用这个简单的库,您可以节省写入代码以使用 UIScrollView 实现的时间。

入门

  • 下载库
  • 使用 Cocoapods 安装

类参考

  • RHRefreshControl
  • RHRefreshConfiguration
  • RHRefreshView 协议

初始化

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;

自定义刷新视图

  • // TODO

特别感谢

  • // TODO

许可证

查看 LICENSE