博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
新浪微博客户端(20)-集成MJRefresh
阅读量:6257 次
发布时间:2019-06-22

本文共 3027 字,大约阅读时间需要 10 分钟。

HomeViewController.m

/** 集成下拉刷新控件 */- (void)setupPullToRefreshView {       __unsafe_unretained UITableView *tableView = self.tableView;    // 下拉刷新    tableView.mj_header= [MJRefreshNormalHeader headerWithRefreshingBlock:^{        [self pullToRefresh:tableView.mj_header];    }];        // 设置自动切换透明度(在导航栏下面自动隐藏)    tableView.mj_header.automaticallyChangeAlpha = YES;        // 上拉刷新    tableView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{        [self pullToLoad:tableView.mj_footer];    }];        [tableView.mj_header beginRefreshing]; // 开始进入刷新状态    }- (void)pullToRefresh:(MJRefreshHeader *)header {    AFHTTPSessionManager *requestManager = [AFHTTPSessionManager manager];        NSString *urlString = @"https://api.weibo.com/2/statuses/friends_timeline.json";    NSMutableDictionary *params = [NSMutableDictionary dictionary];    params[@"access_token"] = [DJAccountTool account].access_token;    DJStatus *status = [self.statuses firstObject];    if (status) {        params[@"since_id"] = status.idstr;                    }    [requestManager GET:urlString parameters:params progress:nil success:^(NSURLSessionDataTask * _Nonnull task, NSDictionary *  _Nullable responseObject) {        NSArray *newStatuses = [DJStatus mj_objectArrayWithKeyValuesArray:responseObject[@"statuses"]];        // 1. 将刷新获取到的新数据添加到总数组的头部        NSRange range = NSMakeRange(0, newStatuses.count);        NSIndexSet *indexSet = [[NSIndexSet alloc] initWithIndexesInRange:range];        [self.statuses insertObjects:newStatuses atIndexes:indexSet];                // 2. 刷新TableView        [self.tableView reloadData];                // 3. 结束刷新        [header endRefreshing];                // 4. 提示当前微博刷新数量        [self showRefreshStatusesNums:newStatuses.count];                    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {        [header endRefreshing];    }];}- (void)pullToLoad:(MJRefreshFooter *)footer {    AFHTTPSessionManager *requestManager = [AFHTTPSessionManager manager];        NSString *urlString = @"https://api.weibo.com/2/statuses/friends_timeline.json";    NSMutableDictionary *params = [NSMutableDictionary dictionary];    params[@"access_token"] = [DJAccountTool account].access_token;    DJStatus *status = [self.statuses lastObject];    if (status) {        long long max_id = [status.idstr longLongValue] - 1;        params[@"max_id"] = @(max_id);    }    [requestManager GET:urlString parameters:params progress:nil success:^(NSURLSessionDataTask * _Nonnull task, NSDictionary *  _Nullable responseObject) {        NSArray *newStatuses = [DJStatus mj_objectArrayWithKeyValuesArray:responseObject[@"statuses"]];        // 1. 将刷新获取到的新数据添加到总数组的尾部        [self.statuses addObjectsFromArray:newStatuses];                // 2. 刷新TableView        [self.tableView reloadData];                // 3. 结束刷新        [footer endRefreshing];            } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {        [footer endRefreshing];    }];}

最终效果:

 

转载地址:http://jsxsa.baihongyu.com/

你可能感兴趣的文章
8个强大的基于Bootstrap的CSS框架
查看>>
MAC OSX在视图port哪个程序占用,杀死进程的方法
查看>>
Linux中select poll和epoll的区别
查看>>
图像识别引擎-引擎收集知识地图~
查看>>
【面试】如何找到迷宫出口
查看>>
iscroll5实现下拉加载更多
查看>>
hdu1753()模拟大型实景数字相加
查看>>
Cocos2d-x之MenuItem
查看>>
Esper学习之六:EPL语法(二)
查看>>
流和文件
查看>>
iOS:UIMapView地图视图控件的简单使用
查看>>
关于Python的3张图
查看>>
作IFRAME于iOS您的设备上支持滚动
查看>>
后台数据库优化——板机
查看>>
C++ redirect input
查看>>
linux_sound_alsa_Android+alsa音频系统中的几个问题
查看>>
IOS Core Image之二
查看>>
python---__getattr__\__setattr_重载'.'操作
查看>>
VMware克隆虚拟机后网络不能正常使用的解决方法
查看>>
android平台TextView使用ImageSpan画廊GIF图像
查看>>