最近新开发的一个项目里面需要用到水波纹效果,类似从中心往四周扩散那种,其实这种效果很常见,就是根据动画来实现的,具体需求效果如下:
一、工具类的实现
首先创建一个基于UIView的工具类,然后在这个工具类里面实现动画效果,具体代码如下所示:
1、.h文件
#import <UIKit/UIKit.h>
@interface JSRadarTool : UIView
- (void)drawRect:(CGRect)rect;
@end
2、.m文件
#import "JSRadarTool.h"
@implementation JSRadarTool
- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
[[UIColor whiteColor] setFill];
UIRectFill(rect);
NSInteger pulsingCount = 5;
double animationDuration = 3;
CALayer * animationLayer = [CALayer layer];
for (int