UIRefreshControl卡在最后一个拖动步骤中

时间:2014-08-05 09:29:51

标签: ios objective-c ios7 uikit uirefreshcontrol

到目前为止,下拉刷新控件并启动相关流程工作正常。问题是,填充UIActivityIndi​​cator的最后一步并不像Mail.app那样顺利。人们必须多拉一点才能开始刷新过程。

知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:-1)

你要做的事实上是"结束"通过调用endRefreshing方法刷新函数:

- (void)refreshView:(UIRefreshControl *)sender {
    [self updateProfile]; //do something...in my case it updates a profile
    [sender endRefreshing];
}