iOS 雷达效果实例详解_IOS

iOS雷达效果

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

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

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

  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:α];
  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
}

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

以上就是对IOS 雷达效果的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索ios
, iOS雷达效果
, 雷达效果实现
雷达效果详解
ios 雷达扫描效果、ios 脉冲雷达扫描效果、ios 雷达扫描效果代码、ios 雷达效果、echarts 雷达图实例,以便于您获取更多的相关知识。

时间: 2024-10-25 00:23:40

iOS 雷达效果实例详解_IOS的相关文章

使用Swift代码实现iOS手势解锁、指纹解锁实例详解_IOS

一.手势密码 1. 1.1.用UIButton组成手势的节点. 1.2.当手指接触屏幕时,调用重写的 touchesBegan:withEvent方法(在touchesBegan里调用setNeedsDisplay,这样就会自动调用drawRect方法). 1.3.当手指在屏幕上滑动时,调用重写的touchesEnded:withEvent方法. 这两个方法执行的操作是一样的:通过locationInView获取 触摸的坐标,然后用 CGRectContainsPoint 判断手指是否经过UIB

iOS UITableView 与 UITableViewController实例详解_IOS

很多应用都会在界面中使用某种列表控件:用户可以选中.删除或重新排列列表中的项目.这些控件其实都是UITableView 对象,可以用来显示一组对象,例如,用户地址薄中的一组人名. UITableView 对象虽然只能显示一行数据,但是没有行数限制. •编写新的应用程序 JXHomepwner 应用 创建应用,填写基本信息 •UITableViewController UITableView 是视图.我们知道 模型-视图-控制器(Model-View-Controller),他是我们必须遵守的一种

IOS 粒子系统 (CAEmitterLayer)实例详解_IOS

一.系统剖析 在UIKit中,粒子系统由两部分组成: ·      一个或多个CAEmitterCells:发射器电池可以看作是单个粒子的原型(例如,一个单一的粉扑在一团烟雾).当散发出一个粒子,UIKit根据这个发射粒子和定义的基础上创建一个随机粒子.此原型包括一些属性来控制粒子的图片,颜色,方向,运动,缩放比例和生命周期. ·      一个或多个CAEmitterLayers,但通常只有一个:这个发射的层主要控制粒子的形状(例如,一个点,矩形或圆形)和发射的位置(例如,在矩形内,或边缘).

IOS开发之JSON转PLIST实例详解_IOS

 IOS JSON转PLIST   从xx.json文件中读取JSON数据,写入到xx.plist文件中,实现代码如下: NSString *path = @"/Users/android_ls/Desktop/city_province.json"; NSArray *array = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:path] options:NSJSONReadingMut

Android自定义控件eBook实现翻书效果实例详解_Android

本文实例讲述了Android自定义控件eBook实现翻书效果的方法.分享给大家供大家参考,具体如下: 效果图: Book.java文件: package com.book; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.ImageView; public class Book extend

jQuery实现的自定义弹出层效果实例详解_jquery

本文实例讲述了jQuery实现的自定义弹出层效果.分享给大家供大家参考,具体如下: dialog.css: #DialogBySHFLayer { width:100%; height:100%; left:0; top:0; position:fixed; z-index:500; background-color:#333333; filter:alpha(Opacity=40); -moz-opacity:0.4; opacity: 0.4; } /*弹出的提示框*/ #DialogByS

IOS 陀螺仪开发(CoreMotion框架)实例详解_IOS

iOS陀螺仪 参数意义 self.mManager = [[CMMotionManager alloc]init]; self.mManager.deviceMotionUpdateInterval = 0.5; if (self.mManager.gyroAvailable) { [self.mManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMDeviceMotion

IOS Swift 开发QRCore(二维码)实例详解_IOS

1.搭个界面 2.写代码 // // ViewController.swift // GeneratorQRCode // // Created by targetcloud on 2016/12/3. // Copyright 2016年 targetcloud. All rights reserved. // import UIKit class ViewController: UIViewController { @IBOutlet weak var qrImg: UIImageView!

Javascript 实现放大镜效果实例详解_javascript技巧

Javascript 实现放大镜效果 今天做任务的时候,有一个任务就是让实现电商网站常用的放大镜效果,类似于这样的放大镜效果效果,之前并没有做过这种放大镜效果,刚开始的思路是对图片进行裁剪,但是后来发现实在是难以实现,于是求助了万能的谷歌,发现一个很好的思路就是,展示区是一小块可视区域,给他一个图片,超出可视区域的部分设为隐藏,有了这个思路,这个效果就能够很好的实现了,先看一下HTML结构! <div id="pic_wrap"> <div id="floa