博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一行代码让你的TableView动起来-iOS动画
阅读量:6276 次
发布时间:2019-06-22

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

前言

UITableView 是iOS日常开发中经常使用到的控件。tableView的普通展示效果比较生硬,为了提升APP的活力,提升体验,我们可以对根据tableView的特点,操作Cell实现一些动画效果。

我写了一个简单的动画集 ,只需要一行代码就可以让tableView实现动画
目前有大概10个动画,后续会优化增加。
源码放到Github上: 欢迎大家star、下载,交流沟通。

正文

一、效果展示:

二、使用方法

调用各个动画的方法都为类方法,只需一行代码就可以调用。

eg:

[TableViewAnimationKit shakeAnimationWithTableView:tableView];复制代码

TableViewAnimationKit提供的动画类方法

+ (void)moveAnimationWithTableView:(UITableView *)tableView;+ (void)alphaAnimationWithTableView:(UITableView *)tableView;+ (void)fallAnimationWithTableView:(UITableView *)tableView;+ (void)shakeAnimationWithTableView:(UITableView *)tableView;+ (void)overTurnAnimationWithTableView:(UITableView *)tableView;+ (void)toTopAnimationWithTableView:(UITableView *)tableView;+ (void)springListAnimationWithTableView:(UITableView *)tableView;+ (void)shrinkToTopAnimationWithTableView:(UITableView *)tableView;+ (void)layDonwAnimationWithTableView:(UITableView *)tableView;+ (void)roteAnimationWithTableView:(UITableView *)tableView;复制代码

三、源码讲解

先举其中一个动画效果为例子:

动画效果为Cell左右各自插入。
实现代码很简单如下:
+ (void)shakeAnimationWithTableView:(UITableView *)tableView {    NSArray *cells = tableView.visibleCells;    for (int i = 0; i < cells.count; i++) {        UITableViewCell *cell = [cells objectAtIndex:i];        if (i%2 == 0) {            cell.transform = CGAffineTransformMakeTranslation(-XS_SCREEN_WIDTH,0);        }else {            cell.transform = CGAffineTransformMakeTranslation(XS_SCREEN_WIDTH,0);        }        [UIView animateWithDuration:0.4 delay:i*0.03 usingSpringWithDamping:0.75 initialSpringVelocity:1/0.75 options:0 animations:^{            cell.transform = CGAffineTransformIdentity;        } completion:^(BOOL finished) {        }];    }}复制代码

主要思路为:

获得tableview的visibleCells数组,进行遍历,对每个执行动画,不同cell的执行时间、方向有所差异,一起构成整个动画。

四、其他一些动画效果

后语

源码放到Github上: 有需要的同学可以下载、star,目前只算Demo级别,后面会继续优化、增加动画。如有什么想法,欢迎进行技术交流。

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

你可能感兴趣的文章
solrCloud+tomcat+zookeeper集群配置
查看>>
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>
建设网站应该考虑哪些因素
查看>>
mongodb $exists
查看>>
js实现页面跳转的几种方式
查看>>
sbt笔记一 hello-sbt
查看>>
常用链接
查看>>
pitfall override private method
查看>>
!important 和 * ----hack
查看>>
聊天界面图文混排
查看>>
控件的拖动
查看>>
svn eclipse unable to load default svn client的解决办法
查看>>
Android.mk 文件语法详解
查看>>
QT liunx 工具下载
查看>>
内核源码树
查看>>
Java 5 特性 Instrumentation 实践
查看>>