iOS中 Animation 动画大全 韩俊强的博客

每日更新关注:http://weibo.com/hanjunqiang  新浪微博!

iOS开发者交流QQ群: 446310206

1.iOS中我们能看到的控件都是UIView的子类,比如UIButton UILabel UITextField UIImageView等等

2.UIView能够在屏幕的显示是因为在创建它的时候内部自动添加一个CALayer图层,通过这个图层在屏幕上显示的时候会调用一个drawRect: 的方法,完成绘图,才能在屏幕上显示

3.CALayer 本身就具有显示功能,但是它不能响应用户的交互事件,如果只是单纯的显示一个图形,此时你可以使用CALayer创建或者是使用UIView创建,但是如果这个图形想响应用户交互事件,必须使用UIView或者子类

动画知识框图如下:

#import "ViewController.h"
#import "UITextField+Shake.h"
@interface ViewController ()
@property (retain, nonatomic) IBOutlet UIImageView *balloon;
@property (retain, nonatomic) IBOutlet UITextField *TF;
@property (retain, nonatomic) IBOutlet UIButton *bounces;
@property (retain, nonatomic) IBOutlet UIView *animationView;
@property (retain, nonatomic) IBOutlet UIImageView *cloud;
@end<span style="font-family: 'STHeiti Light';">@implementation ViewController</span>
- (void)viewDidLoad {
    [super viewDidLoad];
    //取到当前视图控制器自带view的图层
    CALayer *layer = self.view.layer;
//    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
//    button.layer //button的图层
    //layer 的color必须是CGColor
    self.animationView.layer.backgroundColor = [UIColor greenColor].CGColor;
}

//给TF创建一个类目:

UITextField+Shake.h
#import <UIKit/UIKit.h>
@interface UITextField (Shake)
- (void)shake;
@end

UITextField+Shake.m
#import "UITextField+Shake.h"

@implementation UITextField (Shake)
//震动的方法
- (void)shake{
    CAKeyframeAnimation *keyFrame = [CAKeyframeAnimation animationWithKeyPath:@"position.x"];
    keyFrame.values = @[@(self.center.x + 10),@(self.center.x),@(self.center.x - 10)];
    keyFrame.repeatCount = 10;
    keyFrame.duration = 0.03;
    [self.layer addAnimation:keyFrame forKey:nil];

}
@end

开始动画按钮点击事件

- (IBAction)handleAnimation:(UIButton *)sender {
    //UIView的属性动画
    [self handlePropertyAnimation];

    //UIView的属性动画 Block形式
    [self handlePrepertyAnimationBlock];

     //UIView的过渡动画
    [self handleTrabsitionAnimation];

    //CALayer动画
    [self handleCALayer];

    //CALayer 的基础动画
    [self handleBasicAnimation];
    //CALayer的关键帧动画
    [self handleKeyFrameAnimation];
    //UITextField 调用输入震动框方法
    [self.TF shake];

    //CALayer的过渡动画
    [self handleLayerCATransactionAnimation];
    //CAAinmationGroup 分组动画
    [self handleAnimatonGroup];

}

每日更新关注:http://weibo.com/hanjunqiang  新浪微博!

//UIView的属性动画 可动画的属性 : frame center bounds alpha backgroundColor transfrom

//修改属性做动画,动画结束后属性修改的结果是真实的作用到动画的视图上,不能恢复到之前的样子

- (void)handlePropertyAnimation{
    //iOS4.0之前必须把要修改的可动画属性写在begin 和 commit 之间
    //开始动画
    [UIView beginAnimations:nil context:nil];
    //指定代理 动画的代理不需要遵循协议,因为此代理就没有制定协议
    [UIView setAnimationDelegate:self];
    //设置动画的持续时间
    [UIView setAnimationDuration:3.0];
    //设置动画的重复次数 给重复效果旋转效果立即消失
    [UIView setAnimationRepeatCount:3.0];
    //设置动画的反转效果
    [UIView setAnimationRepeatAutoreverses:YES];
    //设置动画的变化速度
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

    //如果要实现这个方法必须设置代理,此方法在动画结束后触发
    [UIView setAnimationDidStopSelector:@selector(makeAnimationBack)];

    //修改属性做动画
    //1.center 修改中心点
    CGPoint center = self.animationView.center;
    center.y += 10;
    self.animationView.center =center;
    //2.修改透明度 alpha
    self.animationView.alpha = 0.0;
    //3.变形 tranform
    //<#CGAffineTransform t#> 之前形变量
    //旋转的角度180/4
    self.animationView.transform = CGAffineTransformRotate(self.animationView.transform, M_PI_4);

    self.animationView.transform = CGAffineTransformScale(self.animationView.transform, 0.5, 0.5);

    //提交动画
    [UIView commitAnimations];
}

//恢复到视图之前的状态

- (void)makeAnimationBack{
    //

    self.animationView.center = self.view.center;

    self.animationView.alpha = 1.0;
    //恢复到tranform最初状态,最初状态就在CGAffineTransformIdentity记录
    self.animationView.transform = CGAffineTransformIdentity;

}

//UIView的属性动画 Block形式
- (void)handlePrepertyAnimationBlock{
    //iOS4.0之后使用block的形式做动画

    __block typeof(self)weakSelf = self;
    //1.block 的第一种形式
    //01.动画的持续时间
//    [UIView animateWithDuration:2 animations:^{
//        //1.修改中心点
//        CGPoint center = weakSelf.animationView.center;
//        center.y += 50;
//        weakSelf.animationView.center = center;
//        //2.透明度
//        weakSelf.animationView.alpha = 0.0;
//        //3.变形
//        weakSelf.animationView.transform = CGAffineTransformRotate(weakSelf.animationView.transform, M_PI_4);
//}];

    //2.block的第二种形式
    [UIView animateWithDuration:2 animations:^{
        //1.获得中心点
        CGPoint center = weakSelf.animationView.center;
        //改变中心点
        center.y += 50;
        weakSelf.animationView.center =center;
        //2.透明度
        weakSelf.animationView.alpha = 0.0;
        //3.形变修改transform
        weakSelf.animationView.transform = CGAffineTransformScale(weakSelf.animationView.transform, 0.5, 0.2);

    } completion:^(BOOL finished) {
        //返回动画之前的状态
        [weakSelf makeAnimationBack];
    }];

    //3.block的第三种形式
    //01:持续时间
    //02:动画执行的延迟时间
    //03:设置动画的特效
    //04:修好的动画属性
    //05:动画执行结束后的block块
    [UIView animateWithDuration:3 delay:1 options:UIViewAnimationOptionAllowAnimatedContent animations:^{
        //1.获得中心点
        CGPoint center = weakSelf.animationView.center;
        //改变中心点
        center.y += 50;
        weakSelf.animationView.center =center;
        //2.透明度
        weakSelf.animationView.alpha = 0.0;
        //3.形变修改transform
        weakSelf.animationView.transform = CGAffineTransformScale(weakSelf.animationView.transform, 0.5, 0.2);

    } completion:^(BOOL finished) {
         //返回动画之前的状态
        [weakSelf makeAnimationBack];
    }];

    //block的第四种形式
    //参数1:动画持续时间
    //参数2:动画的延迟时间
    //参数3:设置弹簧的强度 范围(0.0~1.0)
    //参数4:设置弹簧的速度
    //参数5:动画效果
    //参数6:改变动画的属性写在这里
    //参数7:结束动画的时候调用的block
    [UIView animateWithDuration:2 delay:1 usingSpringWithDamping:0.5 initialSpringVelocity:500 options:UIViewAnimationOptionCurveEaseInOut animations:^{
        CGPoint center = weakSelf.bounces.center;
        center.y += 10;
        weakSelf.bounces.center = center;
        //transform
        weakSelf.bounces.transform = CGAffineTransformScale(weakSelf.bounces.transform, 1.2, 1.2);
    } completion:^(BOOL finished) {
        CGPoint center = weakSelf.bounces.center;
        center.y -= 10;
        weakSelf.bounces.center = center;
        weakSelf.bounces.transform = CGAffineTransformIdentity;

    }];
}

每日更新关注:http://weibo.com/hanjunqiang  新浪微博!

//UIView的过渡动画

- (void)handleTrabsitionAnimation{

    __block typeof(self)weakSelf = self;
    //01:对哪个视图添加过渡动画
    //02:动画时常
    //03:动画效果
    [UIView transitionWithView:self.animationView duration:2 options:UIViewAnimationOptionAllowAnimatedContent animations:^{

        weakSelf.animationView.transform = CGAffineTransformRotate(weakSelf.animationView.transform, M_PI_4);

    } completion:nil];

}

//CALayer动画,修改layer层的属性做动画并没有真实的作用到这个视图上,动画知识一种假象

- (void)handleCALayer{
    //CALyer 动画就是对layer做动画
    //边框的宽
    self.animationView.layer.borderWidth = 10.0;
    //边框颜色
    self.animationView.layer.borderColor = [UIColor redColor].CGColor;
    //切圆角
//    self.animationView.layer.cornerRadius = 100;
    //取出layer多余的部分
//    self.animationView.layer.masksToBounds = YES;
    //减掉layer多出的部分
//    self.animationView.clipsToBounds = YES;
    //背景图片
    self.animationView.layer.contents = (id)[UIImage imageNamed:@"WDGJ785Q{`CKL4J}1{_4{(Y.jpg"].CGImage;

    //视图一创建出来的时候  锚点 基准点  中心点三个点是重合的
    //锚点 anchorPoint  决定layer层上的哪个点是position 锚点默认是(0.5,0.5),跟视图的中心点重合
    self.animationView.layer.anchorPoint = CGPointMake(0.5, 0);
    self.animationView.transform = CGAffineTransformRotate(self.animationView.transform, M_PI_4);

    //基准点 Position 决定当前视图的layer,在父视图的位置,它以父视图的坐标系为准
    self.animationView.layer.position = CGPointMake(160, 184);
}

//CALayer 的动画基类:CAAnimation

//CABasicAnimation  基础动画

- (void)handleBasicAnimation{
    //CA动画是根据KVC的原理,就修改layer的属性,以达到做动画的效果
    CABasicAnimation *basic = [CABasicAnimation animationWithKeyPath:@"position.x"];

    basic.fromValue = @(-80);
    basic.toValue = @(400);
    //设置动画持续的时间
    basic.duration = 5.0;
    //设置动画重复的次数
    basic.repeatCount = 1000;
    [self.cloud.layer addAnimation:basic forKey:nil];
}

//CAKeyFrameAnimation 关键帧动画

- (void)handleKeyFrameAnimation{
    CAKeyframeAnimation *keyFrame = [CAKeyframeAnimation animationWithKeyPath:@"position"];
    CGPoint point1 = self.cloud.center;
    CGPoint point2 = CGPointMake(160, 100);
    CGPoint point3 = CGPointMake(270, self.cloud.center.y);

    //把一组要播放的动画需求的数值,按顺序放到数组中,此时动画执行的效果,就会按照数组中数据的顺序发生变化;
    //转化point结构体类型 转化成对象类型
    NSValue *value1 = [NSValue valueWithCGPoint:point1];
    NSValue *value2 = [NSValue valueWithCGPoint:point2];
    NSValue *value3 = [NSValue valueWithCGPoint:point3];
    keyFrame.repeatCount = 1000;
    keyFrame.duration = 15.0;
    keyFrame.values = @[value1,value2,value3,value1];
    [self.cloud.layer addAnimation:keyFrame forKey:nil];
}

//CATransition CALayer 的过度动画

- (void)handleLayerCATransactionAnimation{

    /*

     各种动画效果  其中除了'fade', `moveIn', `push' , `reveal' ,其他属于似有的API(我是这么认为的,可以点进去看下注释).

     *  ↑↑↑上面四个可以分别使用'kCATransitionFade', 'kCATransitionMoveIn', 'kCATransitionPush', 'kCATransitionReveal'来调用.

     *  @"cube"                     立方体翻滚效果

     *  @"moveIn"                   新视图移到旧视图上面

     *  @"reveal"                   显露效果(将旧视图移开,显示下面的新视图)

     *  @"fade"                     交叉淡化过渡(不支持过渡方向)             (默认为此效果)

     *  @"pageCurl"                 向上翻一页

     *  @"pageUnCurl"               向下翻一页

     *  @"suckEffect"               收缩效果,类似系统最小化窗口时的神奇效果(不支持过渡方向)

     *  @"rippleEffect"             滴水效果,(不支持过渡方向)

     *  @"oglFlip"                  上下左右翻转效果

     *  @"rotate"                   旋转效果

     *  @"push"

     *  @"cameraIrisHollowOpen"     相机镜头打开效果(不支持过渡方向)

     *  @"cameraIrisHollowClose"    相机镜头关上效果(不支持过渡方向)

     */

    //创建过渡动画对象
    CATransition *transition = [CATransition animation];
    //配置动画过渡的样式
    transition.type = @"cameraIrisHollowClose";
    //将过渡动画添加到layer上
    [self.view.layer  addAnimation:transition forKey:nil];

}

//CAAinmationGroup 分组动画

- (void)handleAnimatonGroup{
    //1.创建第一个关键帧动画,给热气球一个运动轨迹
    CAKeyframeAnimation *keyframePath = [CAKeyframeAnimation animationWithKeyPath:@"position"];
    //贝塞尔曲线
    //1.指定贝塞尔曲线的半径
    CGFloat  radius = [UIScreen mainScreen].bounds.size.height / 2.0;
    //01:圆心
    //02:半径
    //03:开始的角度
    //04:结束的角度
    //05:旋转方向 (YES表示顺时针 NO表示逆时针)
    UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(0, radius) radius:radius startAngle:-M_PI_2 endAngle:M_PI_2 clockwise:YES];
    //将贝塞尔曲线作为运动轨迹
    keyframePath.path = path.CGPath;

    //2.创建第二组关键帧动画,让热气球在运动的时候  由小--->大--->小   ;
    CAKeyframeAnimation *keyFrameScale = [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
    //通过一组数据修改热气球的大小
    keyFrameScale.values = @[@1.0,@1.2,@1.4,@1.6,@1.8,@1.6,@1.4,@1.2,@1.0];
    //创建动画分组对象
    CAAnimationGroup *group = [CAAnimationGroup animation];
    //将两个动画效果添加到分组动画中
    group.animations = @[keyframePath,keyFrameScale];

    group.duration = 8;
    group.repeatCount = 1000;

    [self.balloon.layer addAnimation:group forKey:nil];

}

最终效果:

每日更新关注:http://weibo.com/hanjunqiang  新浪微博!

iOS开发者交流QQ群: 446310206

时间: 2024-10-02 18:03:28

iOS中 Animation 动画大全 韩俊强的博客的相关文章

iOS中 流媒体播放和下载 韩俊强的博客

         iOS中关于流媒体的简介:介于下载本地播放与实时流媒体之间的一种播放形式,下载本地播放必须全部将文件下载完成后才能播放,而渐进式下载不必等到全部下载完成后再播放,它可以一边下载一边播放,在完成播放内容之后,整个文件会保存在手机上. 实时流媒体 实时流媒体是一边接收数据包一边播放,本地不保留文件副本,实时流式传输总是实时传送,可以实时实况转播,支持随机访问,用户可以快进或者快退以观看前面或后面的内容.实时流媒体传输必须保证数据包的传输速度大于文件的播放速度,否则用户看到的视频会出

RxSwift使用教程大全 韩俊强的博客

接上一篇:初识RxSwift及使用教程 韩俊强的博客 本文档内容来自于 RxSwift 的 Playground.记录大多数 ReactiveX 的概念和操作符. (部分翻译和注解来自 ReactiveX文档中文翻译) Introduction 为什么使用 RxSwift? 我们写的很多代码实际上是为了解决和响应外部事件.当用户操作一个控件的时候,我们需要使用 @IBAction 来响应事件.我们需要观察通知来检测键盘改变位置.当 URL Sessions 带着响应的数据返回时,我们需要提供闭包

iOS中 扫描二维码/生成二维码详解 韩俊强的博客

最近大家总是问我有没有关于二维码的demo,为了满足大家的需求,特此研究了一番,希望能帮到大家! 每日更新关注:http://weibo.com/hanjunqiang  新浪微博 指示根视图: self.window.rootViewController = [[UINavigationController alloc]initWithRootViewController:[SecondViewController new]]; 每日更新关注:http://weibo.com/hanjunqi

iOS中 HTTP/Socket/TCP/IP通信协议详解 韩俊强的博客

版权声明:本文为博主原创文章,未经博主允许不得转载. 每日更新关注:http://weibo.com/hanjunqiang  新浪微博 简单介绍: [objc] view plain copy // OSI(开放式系统互联), 由ISO(国际化标准组织)制定   // 1. 应用层   // 2. 表示层   // 3. 会话层   // 4. 传输层   // 5. 网络层   // 6. 数据链接层   // 7. 物理层      // TCP/IP, 由美国国防部制定   // 1. 

iOS11: 使用Xcode9后的11条小建议 韩俊强的博客

作者:韩俊强 原创地址:http://blog.csdn.net/qq_31810357/article/details/78060505 未经允许禁止转载! Xcode9已在9月20号推出, 相信很多人充满期待, 那么新版Xcode给我们带来哪些新东西呢? 下载后发现很多人哀声载道, 很大一部分是不适应新的编译器, 那么我们我们该如何去调整呢? 耐心看完本文或许你能找到一些答案! 1.模拟器的变化 相信很多人不太习惯新版模拟器, 那么如何恢复呢, 看下图:是不是切换很随意. 2.Jump to

iOS中 仿Tumblr点赞心破碎动画 韩俊强的博客

上一篇:高仿Tumblr热度-滚动条数-JQScrollNumberLabel 最近Tumblr轻博客无论是web端还是移动端,都非常受欢迎,简单调研了一下,其中动画是我感兴趣的,特此写了个仿Tumblr点赞心破碎动画: 1.首先看下效果: 2.模仿Tumblr中的效果应用如下: 原理:使用按钮点击Action增加两个事件,通过改变背景hidden和frame,切换图片,增加动画效果等: setupUI及touch Action: - (void)setupUI { // 点击的btn UIBu

iOS中 Realm的学习与使用 韩俊强的博客

iOS开发者交流QQ群:446310206  有问题或技术交流可以咨询!欢迎加入! 这篇直接搬了一份官方文档过来看的 由于之前没用markdown搞的乱七八糟的 所以重新做了一份 后面看到官网的中文文档更新不及时看着英文翻译了一点 搞的更乱了 :( 英文好的直接点右边->官方OC文档 Realm是一个移动端的数据库,Realm是SQLite和CoreData的替代者.它可以节省你成千上万行代码和数周的工作,并且让你精巧的制作出令人惊叹的用户体验. 文档版本 0.93.2在github上获取 需求

iOS中崩溃调试的使用和技巧总结 韩俊强的博客

 每日更新关注:http://weibo.com/hanjunqiang  新浪微博 在iOS开发调试过程中以及上线之后,程序经常会出现崩溃的问题.简单的崩溃还好说,复杂的崩溃就需要我们通过解析Crash文件来分析了,解析Crash文件在iOS开发中是比较常见的. 现在网上有很多关于解析崩溃信息的博客,但是大多质量参差不齐,或者有些细节没有注意到.今天写一篇博客总结一下我对崩溃调试的使用和技巧,如果有哪些错误或遗漏,还请指点,谢谢! 获取崩溃信息 在iOS中获取崩溃信息的方式有很多,比较常见的是

iOS中 Framework静态库的创建和使用遇到的那些坑 韩俊强的博客

前言 网上关于Framework制作的教程数不胜数,然而都过于陈旧,最新的也是使用Xcode7的教程,而且有些设置也只给出步骤,并没有给出原因,而且按照有些教程制作出的framework还有些问题,所以我把自己制作framework的过程记录下来,并且使用的是最新的Xcode8环境.本次制作framework,包含AFN,FMDB第三方,.a文件,xib,Bundle文件,还有Category分类,几乎制作和使用framework遇到的所有坑都被我遇到了,所以,此篇博客在我这属于干货,特此分享给