到目前为止,下拉刷新控件并启动相关流程工作正常。问题是,填充UIActivityIndicator的最后一步并不像Mail.app那样顺利。人们必须多拉一点才能开始刷新过程。
知道如何解决这个问题吗?
答案 0 :(得分:-1)
你要做的事实上是"结束"通过调用endRefreshing方法刷新函数:
- (void)refreshView:(UIRefreshControl *)sender {
[self updateProfile]; //do something...in my case it updates a profile
[sender endRefreshing];
}