赞
踩
以前的添加方法都不好用了,都是提示找不到这些方法:
后来查看MJRefresh的原本出处点击打开链接,下载了最新的demo进行学习,在demo中是这样集成的:
- //下拉刷新
- _customTableView.header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
- // 模拟延迟加载数据,因此2秒后才调用(真实开发中,可以移除这段gcd代码)
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- // 结束刷新
- [_customTableView.header endRefreshing];
- });
- }];
-
- // 设置自动切换透明度(在导航栏下面自动隐藏)
- _customTableView.header.automaticallyChangeAlpha = YES;
-
-
- // 上拉加载更多
- _customTableView.footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
- // 模拟延迟加载数据,因此2秒后才调用(真实开发中,可以移除这段gcd代码)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。