适当拉动刷新

Posted

技术标签:

【中文标题】适当拉动刷新【英文标题】:Proper pull to refresh 【发布时间】:2014-05-04 18:15:26 【问题描述】:

是否有任何工作拉动来刷新库?

PullToRefresh-master 不起作用

SVPullToRefresh-master 有错误

ODRefreshControl-master - 不像我想要的那样

【问题讨论】:

向我们展示您的代码以便我们提供帮助 【参考方案1】:

有很多可用的库,但我建议您使用UIRefreshControl。 Apple 在 ios6 中引入了 UIRefreshControl。您可以使用

将它集成到您​​的 UITableViewController 中
- (void)viewDidLoad 
    [super viewDidLoad];
    // Initialize Refresh Control
    UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
    // Configure Refresh Control
    [refreshControl addTarget:self action:@selector(refresh:) forControlEvents:UIControlEventValueChanged];
    // Configure View Controller
    [self setRefreshControl:refreshControl];

refresh: 方法将触发更新,您可以使用以下方法在 API 回调中停止更新:

 [(UIRefreshControl *)sender endRefreshing];

【讨论】:

也检查这个链接intertech.com/Blog/Post/…

以上是关于适当拉动刷新的主要内容,如果未能解决你的问题,请参考以下文章

拉动刷新默认刷新级别更改

使用 UIScrollView 分页拉动刷新

拉动刷新时旋转图像

工作拉动以禁用反弹刷新

拉动刷新不起作用

拉动刷新不适用于少量单元格