https://blog.csdn.net/u013285730/article/details/50615551?utm_source=blogxgwz6

XZMRefresh

The easiest way to use pull-to-The transverse refresh(非常易用的横向刷新框架与MJRefresh用法一致)

框架开发的缘由:

现今已有越来越多的APP需要横向刷新的需求,然而MJRefresh已不能满足该需求,这套框架已经使用的非常的广泛,并且框架本身封装比较完美集成使用也非常的简单,方法的使用大家也非常的熟悉,所以XZMRefresh本着模仿MJRefresh框架做了横向刷新的Refresh,这样大家不必再去适应繁琐的新框架集成。

[github地址]:https://github.com/xiezhongmin/XZMRefresh

APP实例

1.好赞APP

2.淘宝APP

Content

使用方法参考

默认

隐藏时间

动画图片

[动画图片 + 隐藏状态和时间](#动画图片 + 隐藏状态和时间)

自定义文字

特性说明

如何使用XZMRefresh

cocoapods导入:pod 'XZMRefresh'

手动导入:

将XZMRefresh文件夹中的所有文件拽入项目中

导入主头文件:#import "XZMRefresh.h"

下拉刷新控件的种类

默认(Normal):XZMRefreshNormalHeader

动图(Gif):XZMRefreshGifHeader

上拉刷新控件的种类

默认(Normal):XZMRefreshNormalFooter

动图(Gif):XZMRefreshGifFooter

默认

#pragma mark UICollectionView + 默认刷新

- (void)addNormalHeader

{

__weak typeof(self) weakself = self;

// 添加下拉刷新头部控件

[self.collectionView addNormalHeaderWithCallback:^{

// 增加1条假数据

weakself.examples += 1;

// 模拟延迟加载数据,因此2秒后才调用)

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

[weakself.collectionView reloadData];

// 结束刷新

[weakself.collectionView.xzm_header endRefreshing];

});

}];

// 自动刷新(一进入程序就下拉刷新)

[self.collectionView.xzm_header beginRefreshing];

}

隐藏时间

// 隐藏时间

self.collectionView.xzm_header.updatedTimeHidden = YES;

1

2

动画图片

__weak typeof(self) weakself = self;

// 添加下拉刷新头部控件

[self.collectionView addGifHeaderWithCallback:^{

// 进入刷新状态就会回调这个Block

// 增加1条假数据

weakself.examples += 1;

// 模拟延迟加载数据,因此2秒后才调用)

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

[weakself.collectionView reloadData];

// 结束刷新

[weakself.collectionView.xzm_gifHeader endRefreshing];

});

}];

// 设置普通状态的动画图片

NSMutableArray *idleImages = [NSMutableArray array];

for (NSUInteger i = 1; i<=60; i++) {

UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"dropdown_anim__000%zd", i]];

[idleImages addObject:image];

}

[self.collectionView.xzm_gifHeader setImages:idleImages forState:XZMRefreshStateNormal];

// 设置正在刷新状态的动画图片

NSMutableArray *refreshingImages = [NSMutableArray array];

for (NSUInteger i = 1; i<=3; i++) {

UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"dropdown_loading_0%zd", i]];

[refreshingImages addObject:image];

}

[self.collectionView.xzm_gifHeader setImages:refreshingImages forState:XZMRefreshStateRefreshing];

// 马上进入刷新状态

[self.collectionView.xzm_gifHeader beginRefreshing];

动画图片 + 隐藏状态和时间

// 添加动画图片代码同上

// 隐藏时间

self.collectionView.xzm_gifHeader.updatedTimeHidden = YES;

// 隐藏状态

self.collectionView.xzm_gifHeader.stateHidden = YES;

自定义文字

// 设置文字

[self.collectionView.xzm_header setTitle:@"滑动可以刷新" forState:XZMRefreshStateNormal];

[self.collectionView.xzm_header setTitle:@"释放立即刷新" forState:XZMRefreshStatePulling];

[self.collectionView.xzm_header setTitle:@"正在刷新中 ..." forState:XZMRefreshStateRefreshing];

// 设置字体

self.collectionView.xzm_header.font = [UIFont systemFontOfSize:15];

// 设置颜色

self.collectionView.xzm_header.textColor = [UIColor redColor];

---------------------

作者:配合演出

来源:CSDN

原文:https://blog.csdn.net/u013285730/article/details/50615551

版权声明:本文为博主原创文章,转载请附上博文链接!

iOS使用XZMRefresh实现UITableView或UICollectionView横向刷新的更多相关文章

  1. IOS怎么实现一个UITableView的下拉刷新

    採用的EGORefreshTableHeaderView来实现: 在Controller上实现EGORefreshTableHeaderDelegate的delegate @property(nona ...

  2. iOS 8自动调整UITableView和UICollectionView布局

    本文转载自:http://tech.techweb.com.cn/thread-635784-1-1.html 本文讲述了UITableView.UICollectionView实现 self-siz ...

  3. iOS全埋点解决方案-UITableView和UICollectionView点击事件

    前言 在 $AppClick 事件采集中,还有两个比较特殊的控件: UITableView •UICollectionView 这两个控件的点击事件,一般指的是点击 UITableViewCell 和 ...

  4. iOS中UITableView和UICollectionView的默认空态页

    项目中想实现空态页风格统一控制的效果,就封装了一个默认空态页,使用的技术点有:1 方法替换 ,2 给分类(Category)添加属性. 我们知道,扩展(extension)可以给类添加私有变量和方法. ...

  5. UITableView和UICollectionView的Cell高度的几种设置方式

    UITableViewCell 1.UITableView的Cell高度默认由rowHeight属性指定一个低优先级的隐式约束 2.XIB中可向UITableViewCell的contentView添 ...

  6. [转]iOS8 自动调整UITableView和UICollectionView布局

    转自:http://www.cocoachina.com/industry/20140825/9450.html (via:玉令天下的Blog)   本文讲述了UITableView.UICollec ...

  7. IOS 11 下适配UITableView

    9月份苹果发布了IOS11和Iphone X,这一操作系统一硬件对于开发者适配上面还是造作了不少蛋疼的地方.先来看看IOS 11,这些蛋疼的需要适配的地方: 1.UIScrollView及其子类在IO ...

  8. RumTime实践之--UITableView和UICollectionView缺省页的实现

    有关RunTime的知识点已经看过很久了,但是一直苦于在项目中没有好的机会进行实际运用,俗话说"光说不练假把式",正好最近在项目中碰到一个UITableView和UICollect ...

  9. UITableView和UICollectionView的方法学习一

    参考资料 UITableView UICollectionView UICollectionViewDataSource UICollectionViewDelegate UICollectionVi ...

随机推荐

  1. c/c++ 标准顺序容器 之 push_back,push_front,insert,emplace 操作

    c/c++ 标准顺序容器 之 push_back,push_front,insert,emplace 操作 关键概念:向容器添加元素时,添加的是元素的拷贝,而不是对象本身.随后对容器中元素的任何改变都 ...

  2. SSL 原理及 https 配置

    目录 1. SSL 原理 1.1. SSL 简介 1.2. 主要概念 1.3. 建立安全连接的过程 2. https 配置 (以 nginx 为例) SSL 原理 SSL 简介 SSL (Secure ...

  3. March 04th, 2018 Week 10th Sunday

    Tomorrow never comes. 我生待明日,万事成蹉跎. Most of my past failures can be chalked up to the bad habit of pr ...

  4. March 02nd, 2018 Week 9th Friday

    Make hay while the sun shines. 勿失良机. Last night the toothache woke me up and it was very difficult f ...

  5. 超简单的gif图制作工具

    测试成功了: 软件灵者Gif录制1.0 使用方法注意: 扩展: 安卓端想要制作gif可参考此方法(还没测试):https://blog.csdn.net/u012604745/article/deta ...

  6. vue-cli脚手架搭建的项目怎么去除eslint验证

    修改webpack.base.conf.js这个基础配置文件了.具体修改方法如下: module: { rules: [ ...(config.dev.useEslint ? [createLinti ...

  7. jquery懒加载插件 jquery_lazyload 下载

    每天学习一点点 编程PDF电子书.视频教程免费下载:http://www.shitanlife.com/code https://pan.baidu.com/s/1UbOeyL_AaSNN_KMA4M ...

  8. 002_监测ssl证书过期时间

    一. s_client This implements a generic SSL/TLS client which can establish a transparent connection to ...

  9. linux7 udev的生效

    这篇文章主要介绍在Oracle Linux 7中如何使用udev来设置用户自定义的设备名.在Oracle Linux 7 中的设置方法与之前的Linux版本有较大差别. 下面的例子的对/dev/sdb ...

  10. Python-网络爬虫模块-requests模块之响应-response

    当requests发送请求成功后,requests就会得到返回值,如果服务器响应正常,就会接收到响应数据: Response响应中的属性和方法 常用属性: status_code: 数据类型:int ...