zoukankan      html  css  js  c++  java
  • 我的iOS动画01

    1.嵌套使用,先变大再消失

    [UIView animateWithDuration:1.25 aniamtions:^{

            CGAffineTransform newTRansform = CGAffineTransformMakeScale(1.2, 1.2);

            [firstImageView setTransform:newTransform];

            [secondImageView setTransform:newTransform];

            completion:^(BOOL finished){

                    [UIView animateWithDuration:1.2 animations:^{

                            [firstImageView setAlpha:0];

                            [secondImageView setAlpha:0];

                    }

                    completion:^(BOOL finished){

                            [firstImageView removeFromSuperview];

                            [secondImageView removeFromSuperview];

                    }

                    ];

            }

    ];

    ios 怎么设置动画让一个view从底部弹出来:

    首先设置一个VIEW初始位置在屏幕下, 比如iPhone6:CGRectMake(0, 667, 375, 667);

    然后在一个方法中(比如button出发的方法)view添加动画

    [UIView animateWithDuration:0.5 animations:^{

            // 设置view弹出来的位置

            self.myView.frame = CGRectMake(40, 100, 200, 250);

    }];

  • 相关阅读:
    Python中xlrd和xlwt模块使用方法
    python正则表达式中含有变量的写法
    python中取整的几种方法
    python request 获取cookies value值的方法
    MySQL数据库初识
    三次登录验证以及购物车
    常用设计模式学习
    test0805
    生成器和各种推导式
    第一类对象 闭包 迭代器
  • 原文地址:https://www.cnblogs.com/Ewenblog/p/8183984.html
Copyright © 2011-2022 走看看