UIAlertView的动画效果实现代码
首先要加入QuartzCore.framework
#import "QuartzCore/QuartzCore.h"
- (void)test
{
CAKeyframeAnimation * animation;
animation = [CAKeyframeAnimation animationWithKeyPath:@"transform"];
animation.duration = 0.5;
animation.delegate = self;
animation.removedOnCompletion = YES;
animation.fillMode = kCAFillModeForwards;
NSMutableArray *values = [NSMutableArray array];
[values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(0.1, 0.1, 1.0)]];
[values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(1.2, 1.2, 1.0)]];
[values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(0.9, 0.9, 0.9)]];
[values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 1.0, 1.0)]];
animation.values = values;
animation.timingFunction = [CAMediaTimingFunction functionWithName: @"easeInEaseOut"];
[tempView.layer addAnimation:animation forKey:nil];
}

本文介绍了一种使用QuartzCore.framework实现UIAlertView动画效果的方法。通过创建并配置CAKeyframeAnimation,可以为UIAlertView添加缩放和平滑过渡的效果。文章提供了具体的代码示例。

151

被折叠的 条评论
为什么被折叠?



