ios开发中一个界面有两个网络请求怎样做上拉加载更多

 我来答
huanglenzhi
2015-01-16 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
采纳数:117538 获赞数:517170
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。

向TA提问 私信TA
展开全部
  先一个枚举 来指示目前刷新view是在哪个状态:

  typedef enum {
  RefreshStateLoading = 1,//刷新状态为正在加载
  RefreshStateRelease, //下拉完成释放之前
  RefreshStateNomal, //原始状态
  }RefreshState;
  下面一个类view来描述刷局旦新view

  @interface FootView : UIView

  @property (nonatomic,strong) UIActivityIndicatorView *activity;//活动指示条
  @property (nonatomic,strong) UIImageView *imageView; //箭头图片
  @property (nonatomic,strong) UILabel *infolabel; //文字指示
  @property (nonatomic,assign) RefreshState refreshState; //刷新的状态

  - (void)refreshStateLoading;
  - (void)refreshStateNomal;
  - (void)refreshStateRelsease;

  @end
  #import "FootView.h"

  @implementation FootView

  @synthesize activity;
  @synthesize imageView;
  @synthesize infolabel;
  @synthesize refreshState;

  - (id)initWithFrame:(CGRect)frame
  {
 昌伍 self = [super initWithFrame:frame];
  if (self) {
  self.backgroundColor = [UIColor orangeColor];
  
  //活动指示器初始化
  activity = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  activity.frame = CGRectMake(10, 0, 50, 70);
  [self addSubview:activity];
  
  //箭头图片初始化
  imageView = [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, 30, 50)];
  imageView.image = [UIImage imageNamed:@"blackArrow.png"];
  [self addSubview:imageView];
  
  //信息label初始化
  infolabel = [[UILabel alloc]initWithFrame:CGRectMake(100,0 ,100, 70)];
  infolabel.text = @"下拉刷新...";
  infolabel.font = [UIFont fontWithName:@"Helvetica" size:20];
  infolabel.textAlignment = NSTextAlignmentCenter;
  infolabel.textColor = [UIColor blackColor];
  [self addSubview:infolabel];
  
  //设置初始状态
  self.refreshState = RefreshStateNomal;
  }
  return self;
  }

  //初始状态
  - (void)refreshStateNomal
  {
  self.refreshState = RefreshStateNomal;
  桐迅扰[self.activity stopAnimating];
  self.infolabel.text = @"下拉加载更多...";
  self.imageView.layer.transform = CATransform3DMakeRotation(M_PI * 2, 0, 0, 1);
  self.imageView.hidden = NO;
  }

  //正在请求数据时
  - (void)refreshStateLoading
  {
  self.refreshState = RefreshStateLoading;
  self.imageView.hidden = YES;
  [UIView beginAnimations:nil context:nil];
  self.infolabel.text = @"正在加载...";
  [self.activity startAnimating];
  [UIView commitAnimations];
  }

  //下拉完成后
  - (void)refreshStateRelsease
  {
  self.refreshState = RefreshStateRelease;
  [UIView beginAnimations:nil context:nil];
  self.infolabel.text = @"释放后加载...";
  self.imageView.layer.transform = CATransform3DMakeRotation(M_PI, 0, 0, 1);
  [UIView commitAnimations];
  
  }

  @end
  下面来写table

  #import <UIKit/UIKit.h>

  @interface MyTableVC : UITableViewController<UIScrollViewDelegate>

  @property (nonatomic,strong) NSMutableArray *dataArray;//数据

  @end
  #import "MyTableVC.h"
  #import "FootView.h"

  #define TABLE_CELL_HIGHT 50.0

  @interface MyTableVC ()

  @end

  @implementation MyTableVC
  {
  FootView *footView;
  }

  @synthesize dataArray;

  - (id)initWithStyle:(UITableViewStyle)style
  {
  self = [super initWithStyle:style];
  if (self) {
  
  }
  return self;
  }

  - (void)viewDidLoad
  {
  [super viewDidLoad];
  dataArray = [NSMutableArray arrayWithArray:@[@"列表1",@"列表2",@"列表3",@"列表2",@"列表3",@"列表2",@"列表3",@"列表2",@"列表3",@"列表2",@"列表3",@"列表2",@"列表3",@"列表2",@"列表5"]];
  [self addPullToRefreshFooter];
  }

  //添加FootView指示器
  - (void)addPullToRefreshFooter
  {
  //FootView初始化
  footView = [[FootView alloc]initWithFrame:CGRectMake(0, dataArray.count*50 , 320, 251)];
  [self.tableView addSubview:footView];
  //监视数据数组
  [self addObserver:self forKeyPath:@"dataArray" options:NSKeyValueObservingOptionNew context:nil];
  }

  #pragma mark - Table view data source

  - (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  {
  return TABLE_CELL_HIGHT;
  }

  - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  {
  return 1;
  }

  - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  {
  return dataArray.count;
  }

  - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  {
  static NSString *inditifierCell = @"Cell";
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:inditifierCell];
  if (cell == nil) {
  cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:inditifierCell];
  }
  cell.textLabel.text = [dataArray objectAtIndex:indexPath.row];
  
  return cell;
  }

  - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  {
  NSMutableArray *new = [[NSMutableArray alloc]initWithArray:dataArray];
  [new addObject:@"张三"];
  self.dataArray = new;
  [footView refreshStateNomal];
  self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);
  
  }

  #pragma mark - kvo
  //用于监听dataArray数组来设置footview的位置
  - (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
  {
  NSLog(@"%d",dataArray.count);
  NSMutableArray *mutableArray = [change objectForKey:@"new"];
  footView.frame = CGRectMake(0,TABLE_CELL_HIGHT* mutableArray.count, 320, 251);
  [self.tableView reloadData];
  }

  #pragma mark - Scroller

  //当scroller滑动时调用
  - (void) scrollViewDidScroll:(UIScrollView *)scrollView
  {
  if (footView.refreshState == RefreshStateNomal&& scrollView.contentOffset.y > scrollView.contentSize.height - scrollView.frame.size.height + 70) {
  [footView refreshStateRelsease];
  }
  }

  //当滑动结束时调用
  - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
  {
  if (footView.refreshState == RefreshStateRelease) {
  [UIView beginAnimations:nil context:nil];
  self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 70, 0);
  [footView refreshStateLoading];
  [UIView commitAnimations];
  }
  }

  @end
  在table中处理一些事件:

  为了测试添加数据后footview的位置是否会跟着变动,当点击cell的时候会添加一个数据;

  为了测试加载完成后第二次拖拽是否页面还能够完成,当点击cell的时候foottview会停止;
雪花飞落人家
推荐于2018-04-12 · TA获得超过403个赞
知道小有建树答主
回答量:712
采纳率:0%
帮助的人:507万
展开全部
1。ios上啦陵尺加载更多,最好锋旅用1个接口,两个接口不好,说明一个问题,写后台的那个技术优点问题,或者证明你公司的需求不明确
2.2个尺基高接口容易造成数据错乱。重而造成卡
3。最好让后台把那两个接口合在一起。
4.想办法把2个接口的数据放到一个模型中。不然很卡
5.2个接口你没有办法更有效的刷新数据。你就无法用到cell的缓存
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式