代码实现引导页遮罩(1)---绘制箭头算法

引导页基本是每个项目都需要的,比如上个新功能需要引导用户点击某个按钮进入某个页面再点击某个按钮啥的。我们一般做法都是通过一组图片来完成这些的?我以前也是这样做的,但是总觉的不够好,1.每个分辨率要有一套图,而且这种图基本都是全屏图,如果宽高比不完全一致一点也不能将就的,每套图片都是不小。2.不是真实界面一些动态数据肯定会不那么一致。所以就想着用真实界面,在上面绘制遮罩引导。就有了下面的2个类了。一个是箭头,一个是绘制高亮可点击的那部分。


新建HJArrowView类,代码如下:

/*

画虚线箭头和实线箭头

传入参数(起点坐标,终点坐标,父view)

案例:

HJArrowView *arrowView=[[HJArrowView alloc]initWithFrame:_view.frame];

arrowView.startP=CGPointMake(180, 150);

arrowView.endP=CGPointMake(280, 50);

[arrowView drawLine:_view];

2016年3月1号jing

*/

#import

typedefNS_ENUM(NSInteger, HJArrowType)

{

HJArrowTypeDash,//虚线

HJArrowTypeLine//实线

};

@interfaceHJArrowView :UIView

@property(nonatomic,assign)CGPointstartP;//起点坐标

@property(nonatomic,assign)CGPointendP;//终点坐标

@property(nonatomic,assign)HJArrowTypearrowType;

-(void)drawDash:(UIView*)_subView;//画虚线

-(void)drawLine:(UIView*)_subView;//画实线

@property(nonatomic,assign)CGPointimgPoint;//图片坐标

@property(nonatomic,assign)UIImageOrientationorientation;//图片角度

-(void)imageArrow:(UIView*)_subView;//图片箭头

@end

#import"HJArrowView.h"

@interfaceHJArrowView()

@property(assign)CGPointleftPoint;

@property(assign)CGPointrightPoint;

@end

@implementationHJArrowView

#define pi3.14159265358979323846

#define degreesToRadian(x) (pi * x /180.0)

#define radiansToDegrees(x) (180.0* x / pi)

#define radian45//张开的角度

#define radius15//半径也就是箭头的长度

- (instancetype)initWithFrame:(CGRect)frame

{

self= [superinitWithFrame:frame];

if(self) {

[selfsetup];

}

returnself;

}

- (void)setup

{

self.backgroundColor= [UIColorclearColor];

[selfsetUserInteractionEnabled:NO];

}

-(void)dealloc{

NSLog(@"===HJArrowView===dealloc===");

}

// Only override drawRect: if you perform custom drawing.

// An empty implementation adversely affects performance during animation.

- (void)drawRect:(CGRect)rect {

// Drawing code

CGContextRefcontext =UIGraphicsGetCurrentContext();

if(context ==nil) {

return;

}

//[[[UIColor redColor] colorWithAlphaComponent:0.5f] setFill];

//UIRectFill(rect);

if(self.arrowType==HJArrowTypeDash){

CGContextBeginPath(context);

CGContextSetLineWidth(context,1.0);

CGContextSetStrokeColorWithColor(context, [UIColorwhiteColor].CGColor);

CGFloatlengths[] = {10,10};

CGContextSetLineDash(context,0, lengths,2);

CGContextMoveToPoint(context,self.startP.x,self.startP.y);

CGContextAddLineToPoint(context,self.endP.x,self.endP.y);

CGContextMoveToPoint(context,self.endP.x,self.endP.y);//起点坐标

CGContextAddLineToPoint(context,self.rightPoint.x,self.rightPoint.y);//终点坐标

CGContextMoveToPoint(context,self.endP.x,self.endP.y);//起点坐标

CGContextAddLineToPoint(context,self.leftPoint.x,self.leftPoint.y);//终点坐标

//CGContextStrokePath(context);

CGContextClosePath(context);

CGContextDrawPath(context,kCGPathFillStroke);

}elseif(self.arrowType==HJArrowTypeLine){

CGContextSetLineCap(context,kCGLineCapRound);

CGContextSetLineWidth(context,1.0);//线宽

CGContextSetAllowsAntialiasing(context,true);

CGContextSetStrokeColorWithColor(context,[UIColorwhiteColor].CGColor);//线的颜色

CGContextBeginPath(context);

CGContextMoveToPoint(context,self.startP.x,self.startP.y);//起点坐标

CGContextAddLineToPoint(context,self.endP.x,self.endP.y);//终点坐标

CGContextMoveToPoint(context,self.endP.x,self.endP.y);//起点坐标

CGContextAddLineToPoint(context,self.rightPoint.x,self.rightPoint.y);//终点坐标

CGContextMoveToPoint(context,self.endP.x,self.endP.y);//起点坐标

CGContextAddLineToPoint(context,self.leftPoint.x,self.leftPoint.y);//终点坐标

//CGContextStrokePath(context);

CGContextClosePath(context);

CGContextDrawPath(context,kCGPathFillStroke);

}

}

#pragma mark //坐标计算

-(CGPoint)getArrowLeftPoint:(CGFloat)_radian{

CGPointpoint=CGPointMake(self.endP.x+radius*cos(degreesToRadian(-(radian+_radian))),self.endP.y+radius*sin(degreesToRadian(-(radian+_radian))));

returnpoint;

}

-(CGPoint)getArrowRightPoint:(CGFloat)_radian{

CGPointpoint=CGPointMake(self.endP.x+radius*cos(degreesToRadian((radian-_radian))),self.endP.y+radius*sin(degreesToRadian((radian-_radian))));

returnpoint;

}

//计算角度

-(CGFloat)angleBetweenPoints{

CGFloatheight =self.endP.y-self.startP.y;

CGFloatwidth =self.startP.x-self.endP.x;

CGFloatrads =atan(height/width);

CGFloatradians=radiansToDegrees(rads);

if(self.startP.x

radians=180+radians;

}

returnradians;

//degs = degrees(atan((top - bottom)/(right - left)))

}

//获取箭头的左右点

-(void)getArrowPoint{

CGFloatloc_radian=[selfangleBetweenPoints];//计算线的角度

self.leftPoint=[selfgetArrowLeftPoint:loc_radian];

self.rightPoint=[selfgetArrowRightPoint:loc_radian];

}

#pragma mark //public

//画虚线

-(void)drawDash:(UIView*)_subView{

self.arrowType=HJArrowTypeDash;

[selfgetArrowPoint];

[_subViewaddSubview:self];

}

//画实线

-(void)drawLine:(UIView*)_subView{

self.arrowType=HJArrowTypeLine;

[selfgetArrowPoint];

[_subViewaddSubview:self];

}

//图片箭头

-(void)imageArrow:(UIView*)_subView{

UIImageView*loc_imgView=[[UIImageViewalloc]initWithFrame:CGRectMake(self.imgPoint.x,self.imgPoint.y,108,112)];

//UIImage *loc_image=[UIImage imageWithCGImage:[UIImage imageNamed:@"ydArrow"].CGImage scale:1 orientation:self.orientation];

[loc_imgViewsetImage:[UIImageimageNamed:@"ydArrow"]];

[selfaddSubview:loc_imgView];

[_subViewaddSubview:self];

//旋转角度

//loc_imgView.transform=CGAffineTransformMakeRotation();

//翻转

if(self.orientation==UIImageOrientationRight){

loc_imgView.transform=CGAffineTransformMakeScale(-1.0,1.0);

}elseif(self.orientation==UIImageOrientationLeft){

loc_imgView.transform=CGAffineTransformMakeScale(-1.0,-1.0);

}elseif(self.orientation==UIImageOrientationDown){

loc_imgView.transform=CGAffineTransformMakeScale(1.0,-1.0);

}

}

//UIImage旋转----目前没有用

+ (UIImage*)image:(UIImage*)image rotation:(UIImageOrientation)orientation

{

longdoublerotate =0.0;

CGRectrect;

floattranslateX =0;

floattranslateY =0;

floatscaleX =1.0;

floatscaleY =1.0;

switch(orientation) {

caseUIImageOrientationLeft:

rotate =M_PI_2;

rect =CGRectMake(0,0, image.size.height, image.size.width);

translateX =0;

translateY = -rect.size.width;

scaleY = rect.size.width/rect.size.height;

scaleX = rect.size.height/rect.size.width;

break;

caseUIImageOrientationRight:

rotate =3*M_PI_2;

rect =CGRectMake(0,0, image.size.height, image.size.width);

translateX = -rect.size.height;

translateY =0;

scaleY = rect.size.width/rect.size.height;

scaleX = rect.size.height/rect.size.width;

break;

caseUIImageOrientationDown:

rotate =M_PI;

rect =CGRectMake(0,0, image.size.width, image.size.height);

translateX = -rect.size.width;

translateY = -rect.size.height;

break;

default:

rotate =0.0;

rect =CGRectMake(0,0, image.size.width, image.size.height);

translateX =0;

translateY =0;

break;

}

UIGraphicsBeginImageContext(rect.size);

CGContextRefcontext =UIGraphicsGetCurrentContext();

//做CTM变换

CGContextTranslateCTM(context,0.0, rect.size.height);

CGContextScaleCTM(context,1.0, -1.0);

CGContextRotateCTM(context, rotate);

CGContextTranslateCTM(context, translateX, translateY);

CGContextScaleCTM(context, scaleX, scaleY);

//绘制图片

CGContextDrawImage(context,CGRectMake(0,0, rect.size.width, rect.size.height), image.CGImage);

UIImage*newPic =UIGraphicsGetImageFromCurrentImageContext();

returnnewPic;

}

@end

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

推荐阅读更多精彩内容