zoukankan      html  css  js  c++  java
  • 自定义对话框AlterView

    - (void)show;

    {

        self.hidden = NO;

        CAKeyframeAnimation *animation = [CAKeyframeAnimation

                                          animationWithKeyPath:@"transform"];

        

        CATransform3D scale1 = CATransform3DMakeScale(0.5, 0.5, 1);

        CATransform3D scale2 = CATransform3DMakeScale(0.8, 0.8, 1);

        CATransform3D scale3 = CATransform3DMakeScale(0.9, 0.9, 1);

        CATransform3D scale4 = CATransform3DMakeScale(1.0, 1.0, 1);

        

        NSArray *frameValues = [NSArray arrayWithObjects:

                                [NSValue valueWithCATransform3D:scale1],

                                [NSValue valueWithCATransform3D:scale2],

                                [NSValue valueWithCATransform3D:scale3],

                                [NSValue valueWithCATransform3D:scale4],

                                nil];

        [animation setValues:frameValues];

        

        NSArray *frameTimes = [NSArray arrayWithObjects:

                               [NSNumber numberWithFloat:0.0],

                               [NSNumber numberWithFloat:0.5],

                               [NSNumber numberWithFloat:0.9],

                               [NSNumber numberWithFloat:1.0],

                               nil];

        [animation setKeyTimes:frameTimes];

        

        animation.fillMode = kCAFillModeForwards;

        animation.removedOnCompletion = NO;

        animation.duration = .2;

        

        [self.layer addAnimation:animation forKey:@"popup"];

    }

    - (void)dissmiss;

    {

        self.hidden = YES;

        CAKeyframeAnimation *animation = [CAKeyframeAnimation

                                          animationWithKeyPath:@"transform"];

        

        CATransform3D scale1 = CATransform3DMakeScale(1.0, 1.0, 1);

        CATransform3D scale2 = CATransform3DMakeScale(0.7, 0.7, 1);

        CATransform3D scale3 = CATransform3DMakeScale(0.3, 0.3, 1);

        CATransform3D scale4 = CATransform3DMakeScale(0, 0, 1);

        

        NSArray *frameValues = [NSArray arrayWithObjects:

                                [NSValue valueWithCATransform3D:scale1],

                                [NSValue valueWithCATransform3D:scale2],

                                [NSValue valueWithCATransform3D:scale3],

                                [NSValue valueWithCATransform3D:scale4],

                                nil,nil];

        [animation setValues:frameValues];

        

        NSArray *frameTimes = [NSArray arrayWithObjects:

                               [NSNumber numberWithFloat:0.0],

                               [NSNumber numberWithFloat:0.5],

                               [NSNumber numberWithFloat:0.9],

                               [NSNumber numberWithFloat:1.0],

                               nil,nil];

        [animation setKeyTimes:frameTimes];

        

        animation.fillMode = kCAFillModeForwards;

        animation.removedOnCompletion = NO;

        animation.duration = .2;

        

        [self.layer addAnimation:animation forKey:@"popup"];

    }

  • 相关阅读:
    边缘引导插值/方向卷积插值
    cout显示Mat类对象报错Access Violation
    图像特征点匹配C代码
    TF-IDF(词频-逆向文件频率)用于文字分类
    Jsp中如何通过Jsp调用Java类中的方法
    根据wsdl文件,soupUI生成webservice客户端代码
    根据wsdl,axis2工具生成客户端代码
    根据wsdl,apache cxf的wsdl2java工具生成客户端、服务端代码
    根据wsdl,基于wsimport生成代码的客户端
    Mysql截取和拆分字符串函数用法
  • 原文地址:https://www.cnblogs.com/PressII/p/4040615.html
Copyright © 2011-2022 走看看