首页 > 其他 > 详细

自定义对话框AlterView

时间:2014-10-21 17:35:42      阅读:354      评论:0      收藏:0      [点我收藏+]

- (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"];

}

自定义对话框AlterView

原文:http://www.cnblogs.com/PressII/p/4040615.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!