iOS雷达效果

这段时间新app开始了,有个产品需求是做一个类似如下效果的雷达图:

雷达图.gif

中间的图片是用户头像,然后需要展示一个雷达扫描的效果。


分析下雷达图的大致构成:

  1. 底部一个呈现用户头像的UIImageView
  2. 几个颜色渐变的同心圆,这些同心圆。 只需要在雷达视图的drawRect方法里画就可以了
  3. 盖在最上层的一个扇形,且扇形的圆心和雷达图视图的圆心是同一个点。扫描效果就是让这个扇形绕圆心转,因此把这个扇形抽成一个单独的类比较好。

同时这个雷达图应该提供两个接口:开始动画,暂停动画。因此雷达图的.h文件暴露出来的接口如下:

@interface CPRadarView : UIView
- (void)start;//开始扫描
- (void)stop;//停止扫描
@end

.m文件实现如下:

typedef NS_ENUM(NSUInteger, SectorAnimationStatus) {//扇形视图动画状态
    SectorAnimationUnStart,
    SectorAnimationIsRunning,
    SectorAnimationIsPaused,
};

#define CircleGap   15

@interface CPRadarView ()
@property (nonatomic, strong) CPSectorView *sectorView;         //扇形视图
@property (nonatomic, assign) SectorAnimationStatus status;
@end
@implementation CPRadarView
- (instancetype)initWithFrame:(CGRect)frame {
    if(self = [super initWithFrame:frame]) {
        [self setupUI];
        _status = SectorAnimationUnStart;
    }
    return self;
}

- (void)setupUI {
    self.backgroundColor = [UIColor whiteColor];
    [self addSubview:({
        CGRect temp = self.frame;
        UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake((temp.size.width - temp.size.width / 3.0) / 2.0, (temp.size.height - temp.size.width / 3.0) / 2.0, temp.size.width / 3.0, temp.size.width / 3.0)];
        imageView.layer.cornerRadius = temp.size.width / 6.0;
        imageView.layer.masksToBounds = YES;
        imageView.image = [UIImage imageNamed:@"hehe.JPG"];
        imageView;
    })];
    [self addSubview:({
         CGRect temp = self.frame;
        _sectorView = [[CPSectorView alloc] initWithRadius:temp.size.width / 6.0 + 4 * CircleGap degree:M_PI / 6];
        CGRect frame = _sectorView.frame;
        frame.origin.x = (self.frame.size.width - frame.size.width) / 2.0;
        frame.origin.y = (self.frame.size.height - frame.size.height) / 2.0;
        _sectorView.frame = frame;
        _sectorView;
    })];
}

- (void)start {
    if (_status == SectorAnimationUnStart) {
        _status = SectorAnimationIsRunning;
        CABasicAnimation* rotationAnimation;
        rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
        rotationAnimation.toValue = [NSNumber numberWithFloat: 2 * M_PI ];
        rotationAnimation.duration = 5;
        rotationAnimation.cumulative = YES;
        rotationAnimation.removedOnCompletion = NO;
        rotationAnimation.repeatCount = MAXFLOAT;
        rotationAnimation.fillMode = kCAFillModeForwards;
        [_sectorView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];
    }
    if (_status == SectorAnimationIsPaused) {
        _status = SectorAnimationIsRunning;
        [self resumeLayer:_sectorView.layer];
    }
}

- (void)stop {
    _status = SectorAnimationIsPaused;
    [self pauseLayer:_sectorView.layer];
}

/**
 *  暂停动画
 *
 *  @param layer layer
 */
-(void)pauseLayer:(CALayer*)layer {
    CFTimeInterval pausedTime = [layer convertTime:CACurrentMediaTime() fromLayer:nil];
    layer.speed = 0.0;
    layer.timeOffset = pausedTime;
}

/**
 *  恢复动画
 *
 *  @param layer layer
 */
- (void)resumeLayer:(CALayer*)layer {
    CFTimeInterval pausedTime = [layer timeOffset];
    layer.speed = 1.0;
    layer.timeOffset = 0.0;
    layer.beginTime = 0.0;
    CFTimeInterval timeSincePause = [layer convertTime:CACurrentMediaTime() fromLayer:nil] - pausedTime;
    layer.beginTime = timeSincePause;
}

/**
 *  主要是用于画同心圆
 *
 *  @param rect rect
 */
- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    NSArray *colors = @[[UIColor colorWithHexString:@"ff4e7d"], [UIColor colorWithHexString:@"fd7293"], [UIColor colorWithHexString:@"fcb8cd"], [UIColor colorWithHexString:@"fde9f2"], [UIColor colorWithHexString:@"fcebf3"]];
    CGFloat radius = rect.size.width / 6.0;
    for (UIColor *color in colors) {
        CGFloat red, green, blue, alpha;
        [color getRed:&red green:&green blue:&blue alpha:&alpha];
        CGContextSetRGBStrokeColor(context, red, green, blue, alpha);
        CGContextSetLineWidth(context, 1);
        
        CGContextAddArc(context, rect.size.width / 2.0, rect.size.height / 2.0, radius, 0, 2* M_PI, 0);
         CGContextDrawPath(context, kCGPathStroke);
        radius += CircleGap;
    }
}

其中CPSectorView 是定义的扇形视图,它什么都没干,只是将这个扇形画出来,其.h文件如下:

@interface CPSectorView : UIView

- (instancetype)initWithRadius:(CGFloat)radius degree:(CGFloat)degree;
@end

radius 表示扇形的半径,degree表示扇形的弧度。其m文件如下:

@interface CPSectorView ()
@property (nonatomic, assign) CGFloat radius;
@property (nonatomic, assign) CGFloat degree;
@end

@implementation CPSectorView
- (instancetype)initWithRadius:(CGFloat )radius degree:(CGFloat)degree {
    self = [super initWithFrame:CGRectMake(0, 0, 2 *radius, 2 *radius)];
    if (self)  {
        _degree = degree;
        _radius = radius;
    }
    self.backgroundColor = [UIColor clearColor];
    return self;
}

- (void)drawRect:(CGRect)rect {
//    CGContextRef context = UIGraphicsGetCurrentContext();
//    UIColor *aColor = [UIColor colorWithHexString:@"ff4e7d" alpha:0.5];
//    CGContextSetRGBStrokeColor(context, 1, 1, 1, 0);
//    CGPoint center = CGPointMake(CGRectGetMidX(rect), CGRectGetMidY(rect));
//    CGContextSetFillColorWithColor(context, aColor.CGColor);//填充颜色
//    
//    CGContextMoveToPoint(context, center.x, center.y);
//    CGContextAddArc(context,center.x, center.y, _radius,  _degree / 2.0, -_degree / 2.0, 1);
//    CGContextClosePath(context);
//    CGContextDrawPath(context, kCGPathFillStroke); //绘制路径
    
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef imgCtx = UIGraphicsGetCurrentContext();
    CGPoint center = CGPointMake(CGRectGetMidX(rect), CGRectGetMidY(rect));
    CGContextMoveToPoint(imgCtx, center.x,center.y);
    CGContextSetFillColor(imgCtx, CGColorGetComponents([UIColor blackColor].CGColor));
    CGContextAddArc(imgCtx, center.x, center.y, _radius,  _degree / 2.0, -_degree / 2.0, 1);
    CGContextFillPath(imgCtx);//画扇形遮罩
    CGImageRef mask = CGBitmapContextCreateImage(UIGraphicsGetCurrentContext());
    UIGraphicsEndImageContext();
    CGContextClipToMask(ctx, self.bounds, mask);
    
    CGFloat components[8]={
        1.0, 0.306, 0.49, 0.5,     //start color(r,g,b,alpha)
        0.992, 0.937, 0.890, 0.5      //end color
    };
    //为扇形增加径向渐变色
    CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB();
    CGGradientRef gradient = CGGradientCreateWithColorComponents(space, components, NULL,2);
    CGColorSpaceRelease(space),space=NULL;//release
    
    CGPoint start = center;
    CGPoint end = center;
    CGFloat startRadius = 0.0f;
    CGFloat endRadius = _radius;
    CGContextRef graCtx = UIGraphicsGetCurrentContext();
    CGContextDrawRadialGradient(graCtx, gradient, start, startRadius, end, endRadius, 0);
    CGGradientRelease(gradient),gradient=NULL;//release
}

如果对扇形不做径向颜色渐变直接用注释的代码即可。具体代码就不解释了,注释和函数名字都很清晰。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,386评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 我想 陪孩子旅行
    龙歌Longer阅读 287评论 0 0
  • 自嘲【原创】 兰雪儿 2013-07-21 23:51 曾经含辛茹苦 只为了破茧为蝶 绽放一时的美丽绰约 而今当五...
    我是兰姐阅读 136评论 0 0