iOS UITableView下拉刷新上拉加载更多EGOTableViewPullRefresh类库使用初级剑侠篇(欢迎提建议和分享遇到的问题)

本文主要是介绍iOS UITableView下拉刷新上拉加载更多EGOTableViewPullRefresh类库使用初级剑侠篇(欢迎提建议和分享遇到的问题),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


这篇文章说下:MJRefresh和  EGOTableViewPullRefresh 的使用方法最下面有原理说明,若有不对或者建议请评论指出,先谢谢了:

首先是英文原文和类库下载地址:https://github.com/emreberge/EGOTableViewPullRefresh 

   

然后创建好自己使用的tableview控件接着:

  • 添加 QuartzCore.framework 到你的工程中。

  • 将 EGOTableViewPullRefresh 拖到你的工程目录下。
     
然后在需要使用的类里写上

 

下拉是一个刷新的工作,所以需要我们添加的代码无非就是数据刷新的代码。

(1)在.h文件中添加如下代码

[plain]  view plain copy
  1. @interface ...ViewController : UITableViewController<EGORefreshTableHeaderDelegate>  
  2. {  
  3.     EGORefreshTableHeaderView *refreshTableHeaderView;  
  4.     BOOL reloading;  
  5. }  
  6. - (void)reloadTableViewDataSource;  
  7. - (void)doneLoadingTableViewData;  

(2)在- (void)viewDidLoad函数中添加下面的代码。

[plain]  view plain copy
  1. if (refreshTableHeaderView == nil) {  
  2.           
  3. <span style="white-space:pre">  </span>EGORefreshTableHeaderView *view = [[EGORefreshTableHeaderView alloc] initWithFrame:CGRectMake(0.0f, 0.0f - self.tableView.bounds.size.height, self.view.frame.size.width, self.tableView.bounds.size.height)];  
  4.     view.delegate = self;  
  5.     [self.tableView addSubview:view];  
  6.     refreshTableHeaderView = view;  
  7.     [view release];   
  8. }     
  9. //最后一次更新的时间  
  10. [refreshTableHeaderView refreshLastUpdatedDate];  

(3)在对应的.m文件中添加如下方法

[plain]  view plain copy
  1. #pragma mark -  
  2. #pragma mark Data Source Loading / Reloading Methods  
  3. //更新列表数据  
  4. - (void)reloadTableViewDataSource{  
  5.     [NSThread detachNewThreadSelector:@selector(updateNewsByPullTable) toTarget:self withObject:nil]; //异步加载数据,不影tableView动作  
  6.     reloading = YES;      
  7. }  
  8. //调用JSON服务获取数据  
  9. - (void)updateNewsByPullTable  
  10. {  
  11.     NSString *str = @"http://....../getAllNews.aspx";  
  12.     NSURL *url = [NSURL URLWithString:str];  
  13.     ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];  
  14.     [request startSynchronous];  
  15.       
  16.     //接收返回数据  
  17.     NSString *response = [request responseString];  
  18.     NSLog(@"%@",response);  
  19.     self.data = [response JSONValue];  
  20.     [self.tableView reloadData];  
  21. }  
  22.   
  23. - (void)doneLoadingTableViewData{  
  24.       
  25.     //model should call this when its done loading  
  26.     reloading = NO;  
  27.     [refreshTableHeaderView egoRefreshScrollViewDataSourceDidFinishedLoading:self.tableView];  
  28.       
  29. }  
  30.   
  31. #pragma mark -  
  32. #pragma mark UIScrollViewDelegate Methods  
  33.   
  34. - (void)scrollViewDidScroll:(UIScrollView *)scrollView{   
  35.       
  36.     [refreshTableHeaderView egoRefreshScrollViewDidScroll:scrollView];  
  37.       
  38. }  
  39.   
  40. - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{  
  41.       
  42.     [refreshTableHeaderView egoRefreshScrollViewDidEndDragging:scrollView];  
  43.       
  44. }  
  45.   
  46.   
  47. #pragma mark -  
  48. #pragma mark EGORefreshTableHeaderDelegate Methods  
  49.   
  50. - (void)egoRefreshTableHeaderDidTriggerRefresh:(EGORefreshTableHeaderView*)view{  
  51.       
  52.     [self reloadTableViewDataSource];  
  53.     [self performSelector:@selector(doneLoadingTableViewData) withObject:nil afterDelay:3.0];  
  54.       
  55. }  
  56.   
  57. - (BOOL)egoRefreshTableHeaderDataSourceIsLoading:(EGORefreshTableHeaderView*)view{  
  58.       
  59.     return reloading; // should return if data source model is reloading  
  60.       
  61. }  
  62.   
  63. - (NSDate*)egoRefreshTableHeaderDataSourceLastUpdated:(EGORefreshTableHeaderView*)view{  
  64.       
  65.     return [NSDate date]; // should return date data source was last changed  
  66.       
  67. }  


4、总结

    总的来说,实现这一功能并不复杂,关键在于-(void)reloadTableViewDataSource这一方法。这里我试了一下,读取数据的操作必须是异步的,要不然和tableView下拉再上弹这个动作会有很明显的延迟。再一次感受到了开源类库的强大,感谢这些大神们的无私贡献,让我们这些iOS开发初学者有机会能做出漂亮的应用。







也可以设置一个基类然后其他uitableview继承它:

.h


static NSString *CELL_ID = @"cell_id";


@class BaseTableView;

@protocol BaseTableViewDelegate <NSObject>


@optional

//下拉事件

- (void)pullDown:(BaseTableView *)tableView;

//上拉事件

- (void)pullUp:(BaseTableView *)tableView;

//选中单元格事件

- (void)didSelectRowAtIndexPath:(BaseTableView *)tabelView indexPath:(NSIndexPath *)indexPath;


@end


typedefvoid(^PullDonwFinish)(void);

typedefvoid(^PullUpFinish)(void);


@interface BaseTableView :UITableView<EGORefreshTableHeaderDelegate,UITableViewDataSource, UITableViewDelegate>

{

   EGORefreshTableHeaderView *_refreshHeaderView;

BOOL _reloading;

   UIButton *_moreButton;

}


@property(nonatomic,retain) NSMutableArray *data;


//是否显示下拉控件

@property(nonatomic,assign)BOOL refreshHeader;

//是否有更多(下一页)

@property(nonatomic,assign)BOOL isMore;


@property(nonatomic,copy)PullDonwFinish finishBlock;

@property(nonatomic,copy)PullUpFinish pullUpBlock;

//上拉代理对象

@property(nonatomic,assign)id<BaseTableViewDelegate> refreshDelegate;




//自动执行下拉动作

-(void)launchRefreshing;


- (void)reloadTableViewDataSource;

- (void)doneLoadingTableViewData;



@end


#import "BaseTableView.h
@implementation BaseTableView


- (id)initWithFrame:(CGRect)frame

{

   self = [superinitWithFrame:frame];

   if (self) {

        // Initialization code

        [self_initViews];

    }

    return self;

}


- (void)awakeFromNib {

    [superawakeFromNib];

    [self_initViews];

}


- (void)_initViews {

    

   self.backgroundColor =RGB(242, 243, 240);

    

    self.refreshHeader =YES;

   self.isMore =YES;

   self.delegate =self;

    self.dataSource =self;

    

    _moreButton = [UIButtonbuttonWithType:UIButtonTypeCustom];

   _moreButton.frame =CGRectMake(0,0, self.width,44);

    _moreButton.backgroundColor = [UIColorclearColor];

    [_moreButtonsetTitle:@""forState:UIControlStateNormal];

    _moreButton.titleLabel.font = [UIFontsystemFontOfSize:12.0f];

    [_moreButtonsetTitleColor:[UIColorlightGrayColor] forState:UIControlStateNormal];

    [_moreButtonaddTarget:selfaction:@selector(loadMoreAction)forControlEvents:UIControlEventTouchUpInside];

    

    UIActivityIndicatorView *activityView = [[UIActivityIndicatorViewalloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];

    activityView.frame =CGRectMake(90,10, 20, 20);

    [activityViewstopAnimating];

    activityView.tag =2013;

    [_moreButtonaddSubview:activityView];

    

    self.tableFooterView =_moreButton;

}


-(void)launchRefreshing

{

    if (_reloading) {

       _reloading = NO;

        

        [UIViewanimateWithDuration:0.4animations:^{

            [selfsetContentOffset:CGPointMake(0, -80)];

        }completion:^(BOOL finished) {

           if (finished) {

               //设置停止拖拽

                [_refreshHeaderViewperformSelector:@selector(egoRefreshScrollViewDidEndDragging:)withObject:selfafterDelay:0.2];

            }

        }];

    }else{

        //下拉之前还原_refreshHeaderViewstate

        [_refreshHeaderViewsetState:EGOOPullRefreshNormal];

        

        [UIViewanimateWithDuration:0.4animations:^{

            [selfsetContentOffset:CGPointMake(0, -80)];

        }completion:^(BOOL finished) {

           if (finished) {

                [_refreshHeaderViewsetState:EGOOPullRefreshPulling];

               //设置停止拖拽

                [_refreshHeaderViewperformSelector:@selector(egoRefreshScrollViewDidEndDragging:)withObject:selfafterDelay:0.2];

            }

        }];

    }

}


- (void)setRefreshHeader:(BOOL)refreshHeader {

   _refreshHeader = refreshHeader;

    

    if (self.refreshHeader) {

        if (_refreshHeaderView ==nil) {

           //创建下拉控件

            _refreshHeaderView = [[EGORefreshTableHeaderViewalloc] initWithFrame:CGRectMake(0.0f,0.0f - self.bounds.size.height,self.frame.size.width,self.bounds.size.height)];

            _refreshHeaderView.delegate =self;

            _refreshHeaderView.backgroundColor = [UIColorclearColor];

            [_refreshHeaderViewrefreshLastUpdatedDate];

        }

        

        [selfaddSubview:_refreshHeaderView];

    }else {

       if (_refreshHeaderView.superview !=nil) {

            [_refreshHeaderViewremoveFromSuperview];

        }

    }

}


//上拉按钮的点击事件

- (void)loadMoreAction {

    

   if (self.pullUpBlock !=nil) {

       self.pullUpBlock();

    }

    

    //调用代理对象的协议方法

   if ([self.refreshDelegaterespondsToSelector:@selector(pullUp:)]) {

        [self.refreshDelegatepullUp:self];

    }

    

    [_moreButtonsetTitle:@"正在加载..."forState:UIControlStateNormal];

    UIActivityIndicatorView *activityView = (UIActivityIndicatorView *)[_moreButtonviewWithTag:2013];

    [activityViewstartAnimating];

}


- (void)setIsMore:(BOOL)isMore {

   _isMore = isMore;

   if (self.isMore) {

        [_moreButtonsetTitle:@"加载更多数据"forState:UIControlStateNormal];

       _moreButton.enabled =YES;

    }else {

        [_moreButtonsetTitle:@"没有更多数据"forState:UIControlStateNormal];

       _moreButton.enabled =NO;

    }

    

    UIActivityIndicatorView *activityView = (UIActivityIndicatorView *)[_moreButtonviewWithTag:2013];

    [activityViewstopAnimating];

}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    [tableView deselectRowAtIndexPath:indexPathanimated:YES];

}


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

    return self.data.count;

}


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewCell *cell = [tableViewdequeueReusableCellWithIdentifier:CELL_ID];

   if (!cell) {

        cell = [[UITableViewCellalloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:CELL_ID];

    }

   return cell;

}


/*________________________下拉控件相关方法________________________________*/

#pragma mark -

#pragma mark Data Source Loading / Reloading Methods


- (void)reloadTableViewDataSource{

    _reloading = YES;

    

}


//收起下拉刷新

- (void)doneLoadingTableViewData{

    _reloading = NO;

    [_refreshHeaderViewegoRefreshScrollViewDataSourceDidFinishedLoading:self];

}



#pragma mark -

#pragma mark UIScrollViewDelegate Methods


- (void)scrollViewDidScroll:(UIScrollView *)scrollView{

    

    [_refreshHeaderViewegoRefreshScrollViewDidScroll:scrollView];

    

}


- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{

    

    [_refreshHeaderViewegoRefreshScrollViewDidEndDragging:scrollView];

    

    //偏移量.y + tableView.height =内容的高度

    //h是上拉超出来的尺寸

   float h = scrollView.contentOffset.y + scrollView.height - scrollView.contentSize.height;

   if (h > 30 &&self.isMore) {

        [selfloadMoreAction];

    }

}



#pragma mark -

#pragma mark EGORefreshTableHeaderDelegate Methods

//下拉到一定距离,手指放开时调用

- (void)egoRefreshTableHeaderDidTriggerRefresh:(EGORefreshTableHeaderView*)view{

    

    [selfreloadTableViewDataSource];

    

    //停止加载,弹回下拉

    // [self performSelector:@selector(doneLoadingTableViewData)

    //               withObject:nil afterDelay:3.0];

   if (self.finishBlock !=nil) {

       self.finishBlock();

    }

    

   if ([self.refreshDelegaterespondsToSelector:@selector(pullDown:)]) {

        [self.refreshDelegatepullDown:self];

    }

}


- (BOOL)egoRefreshTableHeaderDataSourceIsLoading:(EGORefreshTableHeaderView*)view{

    

    return_reloading;// should return if data source model is reloading

}


//取得下拉刷新的时间

- (NSDate *)egoRefreshTableHeaderDataSourceLastUpdated:(EGORefreshTableHeaderView*)view{

    

    return [NSDatedate]; // should return date data source was last changed

    

}



@end

 浅谈下拉刷新和上拉加载更多原理:

下文出自:  http://blog.csdn.net/hmt20130412/article/details/32695305

 很多App中,新闻或者展示类都存在下拉刷新和上拉加载的效果,网上提供了实现这种效果的第三方类(详情请见MJRefresh和  EGOTableViewPullRefresh ),用起来很方便,但是闲暇之余,我们可以思考下,这种效果实现的原理是什么,我以前说过,只要是动画都是骗人的,只要不是硬件问题大部分效果都能在系统UI的基础上做出来. 

            @下面是关键代码分析:

// 下拉刷新的原理
- (void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView
{if (scrollView.contentOffset.y < - 100) {
  
  [UIView animateWithDuration:1.0 animations:^{
      
      //  frame发生偏移,距离顶部150的距离(可自行设定)
      self.tableView.contentInset = UIEdgeInsetsMake(150.0f, 0.0f, 0.0f, 0.0f);
  } completion:^(BOOL finished) {
      
      /**
       *  发起网络请求,请求刷新数据
       */  }];}
}// 上拉加载的原理
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{NSLog(@"%f",scrollView.contentOffset.y);NSLog(@"%f",scrollView.frame.size.height);NSLog(@"%f",scrollView.contentSize.height);/***  关键-->*  scrollView一开始并不存在偏移量,但是会设定contentSize的大小,所以contentSize.height永远都会比contentOffset.y高一个手机屏幕的*  高度;上拉加载的效果就是每次滑动到底部时,再往上拉的时候请求更多,那个时候产生的偏移量,就能让contentOffset.y + 手机屏幕尺寸高大于这*  个滚动视图的contentSize.height*/if (scrollView.contentOffset.y + scrollView.frame.size.height >= scrollView.contentSize.height) {
  
  NSLog(@"%d %s",__LINE__,__FUNCTION__);
  [UIView commitAnimations];
  
  [UIView animateWithDuration:1.0 animations:^{
      //  frame发生的偏移量,距离底部往上提高60(可自行设定)
      self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 60, 0);
  } completion:^(BOOL finished) {
      
      /**
       *  发起网络请求,请求加载更多数据
       *  然后在数据请求回来的时候,将contentInset改为(0,0,0,0)
       */
  }];}
}

这篇关于iOS UITableView下拉刷新上拉加载更多EGOTableViewPullRefresh类库使用初级剑侠篇(欢迎提建议和分享遇到的问题)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1088524

相关文章

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

好题——hdu2522(小数问题:求1/n的第一个循环节)

好喜欢这题,第一次做小数问题,一开始真心没思路,然后参考了网上的一些资料。 知识点***********************************无限不循环小数即无理数,不能写作两整数之比*****************************(一开始没想到,小学没学好) 此题1/n肯定是一个有限循环小数,了解这些后就能做此题了。 按照除法的机制,用一个函数表示出来就可以了,代码如下

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问