博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MJRefresh注意事项
阅读量:5297 次
发布时间:2019-06-14

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

 //基本设置

1 在arc工程中,要创建pch文件,并且要import<UIKit/UIKit.h>

2 选中项目 - Project - Build Settings - ENABLE_STRICT_OBJC_MSGSEND 将其设置为 NO 即可

//使用的注意事项

 1 receivedData 和dataSource一定要进行懒加载

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response

{

    //网络指示器开始转动

     [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];

    //当再次进行数据请求的时候一定要将receivedData的数据清空

    if (self.receivedData ) {

        [self.receivedData setData:nil];

    }

 

}

2 当数据解析完成,已经放到数组中后一定要记得刷新 

 [self.tableView reloadData] // [self.collectionView reloadData]

 

3 当进行刷新时,清空数组的操作是在数据已经请求下来之后,在数据解析之前数组的清空

//用法

在viewDidLoad 中

   [self refresh];

   [self loadingMore];

 

//方法

- (void)refresh

{

    [self.collectionView  addHeaderWithCallback:^{

        

       

        [self headerRefresh];

    }];

    

    

    [self.collectionView headerBeginRefreshing];

    self.collectionView.headerPullToRefreshText = @"下拉可以刷新";

    self.collectionView.headerReleaseToRefreshText = @"松开立即刷新";

    self.collectionView.headerRefreshingText = @"正在刷新";

    

   

}

 

 

- (void)loadingMore

{

    [self.collectionView addFooterWithCallback:^{

       

        [self footerRefresh];

    }];

    

    self.collectionView.footerPullToRefreshText = @"上提可以加载";

    self.collectionView.footerReleaseToRefreshText = @"松开立即刷新";

    self.collectionView.footerRefreshingText = @"正在刷新";

 

     [self.collectionView footerBeginRefreshing];

}

 

- (void)headerRefresh

{

    

    self.pageNum = 1;

    [self netWork];

    

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

 

         [self.collectionView headerEndRefreshing];

 

    });

}

 

 

- (void)footerRefresh

{

    

    self.pageNum++;

    

    [self netWork];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

 

        

        [self.collectionView footerEndRefreshing];

 

    });

    

 

}

 

转载于:https://www.cnblogs.com/HughLiu/p/4387960.html

你可能感兴趣的文章
java复制文件
查看>>
第一册:lesson seventy nine.
查看>>
GCD的同步异步串行并行、NSOperation和NSOperationQueue一级用dispatch_once实现单例
查看>>
团队作业
查看>>
数据持久化时的小bug
查看>>
mysql中key 、primary key 、unique key 与index区别
查看>>
bzoj2257
查看>>
Linux查看文件编码格式及文件编码转换<转>
查看>>
Leetcode: Find Leaves of Binary Tree
查看>>
Vue 模板解释
查看>>
http://www.bootcss.com/
查看>>
20145308 《网络对抗》 注入shellcode+Return-to-libc攻击 学习总结
查看>>
将多张图片和文字合成一张图片
查看>>
自己动手写ORM(01):解析表达式树生成Sql碎片
查看>>
如何使用USBWebserver在本机快速建立网站测试环境
查看>>
百度Ueditor编辑器的Html模式自动替换样式的解决方法
查看>>
变量提升
查看>>
线性表可用顺序表或链表存储的优缺点
查看>>
在现有的mysql主从基础上,搭建mycat实现数据的读写分离
查看>>
[Flex] flex手机项目如何限制横竖屏?只允许横屏?
查看>>