温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

iOS中UIRefreshControl的使用案例

发布时间:2021-08-09 11:39:11 来源:亿速云 阅读:136 作者:小新 栏目:移动开发

这篇文章主要介绍iOS中UIRefreshControl的使用案例,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

iOS UIRefreshControl基本用法

- (void) loadRefreshView
{
 // 下拉刷新
 _refreshControl = [[UIRefreshControl alloc] init];
 _refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"下拉刷新"];
 [_refreshControl addTarget:self action:@selector(loadData) forControlEvents:UIControlEventValueChanged];
 [self.securityCollectionView addSubview:_refreshControl];
 [self.securityCollectionView sendSubviewToBack:_refreshControl];
}

// 设置刷新状态
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
 decelerate = YES;
 if (scrollView.contentOffset.y < HEIGHT_REFRESH) {
  dispatch_async(dispatch_get_main_queue(), ^{
   _refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"正在刷新"];
  });
  [_refreshControl beginRefreshing];
  [self loadData];
 }
}

// 设置刷新状态
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
 if (scrollView.contentOffset.y >= HEIGHT_REFRESH) {
  _refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"下拉刷新"];
 }
 else if (!scrollView.decelerating) {
  _refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"松开刷新"];
 }
}

// 结束刷新
- (void) endRefreshControl
{
 [_refreshControl endRefreshing];
}

// 刷新的回调方法
- (void) loadData
{
 [self endRefreshControl];
 // [self performSelector:@selector(endRefreshControl) withObject:nil afterDelay:2];
}

//设置如果collection的内容没有占满整个collectionView,
//这个就不能下拉滑动,没法实现下拉;但是设置下面这个就可以实现下拉了
self.rootView.collectionView.alwaysBounceVertical = YES;

问题描述

接上一个话题,实现了TabBar的点击刷新以后,开始继续写完成功能,刷新UITableView,于是考虑到iOS 10以后,UIScrollView已经有UIRefreshControl的属性了,干脆用自带的写。于是就有了如下的代码:

添加UIRefreshControl到UITableView上去

UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
refreshControl.tintColor = [UIColor grayColor];
refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"下拉刷新"];
[refreshControl addTarget:self action:@selector(refreshTabView) forControlEvents:UIControlEventValueChanged];
self.newsTableView.refreshControl = refreshControl;

下拉刷新事件

-(void)refreshTabView
{
//添加一条数据
[self.newsData insertObject:[self.newsData firstObject] atIndex:0];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[self.newsTableView reloadData];
if ([self.newsTableView.refreshControl isRefreshing]) {
[self.newsTableView.refreshControl endRefreshing];
}
});
}

TabBar点击事件

-(void)doubleClickTab:(NSNotification *)notification{
//这里有个坑 就是直接用NSInteger接收会有问题 数字不对
//因为上个界面传过来的时候封装成了对象,所以用NSNumber接收后再取值
NSNumber *index = notification.object;
if ([index intValue] == 1) {
//刷新
[self.newsTableView.refreshControl beginRefreshing];
}
}

此时的效果如下,直接下拉刷新可以,但是点击TabBar不可以:

iOS中UIRefreshControl的使用案例

刷新异常情况.gif

分析问题

经过Google帮助,终于知道原因,因为系统自带的UIRefreshControl有两个陷阱:

  • 调用-beginRefreshing方法不会触发UIControlEventValueChanged事件;

  • 调用-beginRefreshing方法不会自动显示进度圈。

也就是说,只是调用-beginRefreshing方法是不管用的,那么对应的需要做两件事:

  • 手动设置UIRefreshControl的事件;

  • 手动设置UITableView的ContentOffset,露出进度圈。

解决问题

只需要修改上面第3步中的代码如下:

-(void)doubleClickTab:(NSNotification *)notification{
//这里有个坑 就是直接用NSInteger接收会有问题 数字不对
//因为上个界面传过来的时候封装成了对象,所以用NSNumber接收后再取值
NSNumber *index = notification.object;
if ([index intValue] == 1) {
//刷新
//animated不要为YES,否则菊花会卡死
[self.newsTableView setContentOffset:CGPointMake(0, self.newsTableView.contentOffset.y - self.newsTableView.refreshControl.frame.size.height) animated:NO];
[self.newsTableView.refreshControl beginRefreshing];
[self.newsTableView.refreshControl sendActionsForControlEvents:UIControlEventValueChanged];
}
}

最终效果:

iOS中UIRefreshControl的使用案例

以上是“iOS中UIRefreshControl的使用案例”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI