当前位置:   article > 正文

iOS多种开源库实现上拉刷新下拉加载技巧_ios 刷新库

ios 刷新库

——————————————————1.MJRefresh—————————————————————
1.MJRefresh

import “MJRefresh/MJRefresh.h”

// 添加下拉刷新功能
[_tableView addHeaderWithTarget:self action:@selector(dealRefresh)];
// 上拉加载更多
[_tableView addFooterWithTarget:self action:@selector(dealLoadMore)];
——————————————————————————加载数据方法内————————————————————————————
//重新加载数据
[_tableView reloadData];

//结束刷新
[_tableView headerEndRefreshing];
[_tableView footerEndRefreshing];

——————————————————2.AH3DPullRefresh—————————————————————
  • 1

2.AH3DPullRefresh - 具有3D效果

import “UIScrollView+AH3DPullRefresh.h”

pragma mark - 上下拉刷新

-(void)setRefresh{
[_tableView setPullToLoadMoreHandler:^{
_ffst += 10; //_ffst 是某个数据参数,代表数据位置
[self startDownloadData];
}];
[_tableView setPullToRefreshHandler:^{
_ffst = 1;
[self startDownloadData];
}];
}

——————————————————————————加载数据方法内————————————————————————————
//重新加载数据
[_tableView reloadData];
//结束刷新
[_tableView loadMoreFinished];

        [_tableView refreshFinished];


                 ——————————————————4.刷新指定区域—————————————————————
  • 1
  • 2
  • 3
  • 4

//一个section刷新

NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];

[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];

//一个cell刷新

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];

[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

                    ——————————————————4.相关问题—————————————————————
  • 1

刷新后,会出现tableView置顶,则Y轴上移
解决方案::
- (void)viewDidLoad {
[super viewDidLoad];
//MJ刷新后 tableView置顶解决方案
self.automaticallyAdjustsScrollViewInsets = NO;

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/229187
推荐阅读
相关标签
  

闽ICP备14008679号