服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS绘制专属于程序猿的浪漫爱心

iOS绘制专属于程序猿的浪漫爱心

2021-01-09 17:16独叹梅花瘦2015 IOS

谁说程序猿不懂浪漫,这篇文章主要介绍了iOS绘制专属于程序猿的浪漫爱心,感兴趣的小伙伴们可以参考一下

近来无事,想想it该怎样才能彰显浪漫情怀,不能口头上说说而已,最关键的是要有可视化的东西展示出来才行~

废话不多说,直接上demo

heartview.h

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// heartview.h
// drawheart
//
// created by wql on 16/3/1.
// copyright © 2016年 wql. all rights reserved.
//
 
#import <uikit/uikit.h>
 
@interface heartview : uiview
/**
 * 比率
 */
@property (nonatomic,assign) cgfloat rate;
/**
 * 填充的颜色
 */
@property (nonatomic,strong) uicolor *fillcolor;
/**
 * 线条的颜色
 */
@property (nonatomic,strong) uicolor *strokecolor;
/**
 * 线条的宽度
 */
@property (nonatomic,assign) cgfloat linewidth;
@end

heartview.m文件:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
//
// heartview.m
// drawheart
//
// created by wql on 16/3/1.
// copyright © 2016年 wql. all rights reserved.
//
 
#import "heartview.h"
//间距
nsinteger const spacewidth = 5;
//波浪的振幅
nsinteger const waveamplitude = 5;
@interface heartview ()
{
  cgfloat t;
}
@end
 
@implementation heartview
 
- (instancetype)initwithframe:(cgrect)frame
{
  self = [super initwithframe:frame];
  if (self) {
    [self loadtimer];
  }
  return self;
}
 
- (void)drawrect:(cgrect)rect
{
  [super drawrect:rect];
  
  //上面的两个半圆 半径为整个frame的四分之一
  cgfloat radius = min((self.frame.size.width-spacewidth*2)/4, (self.frame.size.height-spacewidth*2)/4);
  
  //左侧圆心 位于左侧边距+半径宽度
  cgpoint leftcenter = cgpointmake(spacewidth+radius, spacewidth+radius);
  //右侧圆心 位于左侧圆心的右侧 距离为两倍半径
  cgpoint rightcenter = cgpointmake(spacewidth+radius*3, spacewidth+radius);
  
  //左侧半圆
  uibezierpath *heartline = [uibezierpath bezierpathwitharccenter:leftcenter radius:radius startangle:m_pi endangle:0 clockwise:yes];
 
  //右侧半圆
  [heartline addarcwithcenter:rightcenter radius:radius startangle:m_pi endangle:0 clockwise:yes];
  
  //曲线连接到新的底部顶点 为了弧线的效果,控制点,坐标x为总宽度减spacewidth,刚好可以相切,平滑过度 y可以根据需要进行调整,y越大,所画出来的线越接近内切圆弧
  [heartline addquadcurvetopoint:cgpointmake((self.frame.size.width/2), self.frame.size.height-spacewidth*2) controlpoint:cgpointmake(self.frame.size.width-spacewidth, self.frame.size.height*0.6)];
  
  //用曲线 底部的顶点连接到左侧半圆的左起点 为了弧线的效果,控制点,坐标x为spacewidth,刚好可以相切,平滑过度。y可以根据需要进行调整,y越大,所画出来的线越接近内切圆弧(效果是越胖)
  [heartline addquadcurvetopoint:cgpointmake(spacewidth, spacewidth+radius) controlpoint:cgpointmake(spacewidth, self.frame.size.height*0.6)];
  
  //线条处理
  [heartline setlinecapstyle:kcglinecapround];
  //线宽
  [self setheartlinewidthwithpath:heartline];
  //线条的颜色
  [self setheartstrokecolor];
  
  //根据坐标点连线
  [heartline stroke];
  //cliptobounds 切掉多余的部分
  [heartline addclip];
  
  
  //初始化波浪的构成
  uibezierpath *waves = [uibezierpath bezierpath];
  
  //首先 把起始点设置为左侧 x坐标为spacewidth 心形从下往上填充,y坐标需要满足一定的函数关系式,当rate为0时,位置为总高度-2倍的留白距离(spacewidth)+波浪的振幅;当rate为1时,位置为留白距离(spacewidth)-振幅。由这两个状态构建函数表达式,即可得到如下表达式
  cgpoint startpoint = cgpointmake(spacewidth, (self.frame.size.height-3*spacewidth+waveamplitude*2)*(1-self.rate)+spacewidth-waveamplitude);
  [waves movetopoint:startpoint];
  
  //关键的地方来了 波浪线怎么画?
  //首先,x坐标是从左往右连续的 y坐标是起始的高度加上一定的波动 这里选择了cos函数。5是波动的幅度大小,50控制的是波峰的间距,t是为了让其动起来,随时间发生波动
  for (int i = 0; i<self.frame.size.width-spacewidth*2+self.linewidth*2; i++) {
    //x是要考虑线宽的 不然的话,会导致填充的宽度不够 y就是在某个值附近波动
    cgpoint middlepoint = cgpointmake(spacewidth+i-self.linewidth, startpoint.y+waveamplitude*cos(m_pi/50*i+t));
    
    [waves addlinetopoint:middlepoint];
  }
  
  //画波浪线的右端 到底部的垂直线
  [waves addlinetopoint:cgpointmake(self.frame.size.width-spacewidth*2, self.frame.size.height-spacewidth*2)];
  //画右侧底部的点 到达左侧底部的点之间的横线
  [waves addlinetopoint:cgpointmake(spacewidth, self.frame.size.height-spacewidth*2)];
  //设置填充颜色
  [self setheartfillcolor];
  //填充
  [waves fill];
  
}
//设置线条宽度 默认为1
- (void)setheartlinewidthwithpath:(uibezierpath*)path
{
  cgfloat linew;
  if (self.linewidth) {
    linew = self.linewidth;
  }else{
    linew = 1;
  }
  
  [path setlinewidth:linew];
}
 
//设置线条颜色
- (void)setheartstrokecolor
{
  uicolor *strokcolor;
  if (self.strokecolor) {
    strokcolor = self.strokecolor;
  }else{
    strokcolor = [uicolor blackcolor];
  }
  
  [strokcolor set];
}
//设置填充的颜色
- (void)setheartfillcolor
{
  uicolor *fillcolor;
  if (self.fillcolor) {
    fillcolor = self.fillcolor;
  }else{
    fillcolor = [uicolor orangecolor];
  }
  
  [fillcolor set];
 
}
 
//为了实现动态的效果,加一个timer
- (void)loadtimer
{
  nstimer *timer = [nstimer scheduledtimerwithtimeinterval:0.02 target:self selector:@selector(timeraction) userinfo:nil repeats:yes];
  [timer fire];
}
//t 是一个影响波浪线的参数,每次修改之,再画,则每次的都不一样,则有动态的效果
- (void)timeraction
{
  t += m_pi/50;
  
  if (t == m_pi) {
    t = 0;
  }
  //修改了t之后 要调用draw方法
  [self setneedsdisplay];
}
 
@end一些关键点,我已经注释啦~

下面就是看看怎么使用这个视图了:

viewcontroller.m中:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// viewcontroller.m
// drawheart
//
// created by wql on 16/3/1.
// copyright © 2016年 wql. all rights reserved.
//
 
#import "viewcontroller.h"
#import "heartview.h"
 
nsinteger const heartwidth = 200;
nsinteger const heartheight = 200;
 
@interface viewcontroller ()
{
 heartview *heartview;
}
@end
 
@implementation viewcontroller
 
- (void)viewdidload {
 [super viewdidload];
 heartview = [[heartview alloc]initwithframe:cgrectmake((self.view.frame.size.width-heartwidth)/2, (self.view.frame.size.height-heartheight)/2, heartwidth, heartheight)];
 
 heartview.rate = 0.5;
 heartview.linewidth = 1;
 heartview.strokecolor = [uicolor blackcolor];
 heartview.fillcolor = [uicolor redcolor];
 heartview.backgroundcolor = [uicolor clearcolor];
 [self.view addsubview:heartview];
 
 [self loadslider];
}
 
- (void)loadslider
{
 uislider *valueslider = [[uislider alloc]initwithframe:cgrectmake((self.view.frame.size.width-300)/2, self.view.frame.size.height-150, 300, 50)];
 valueslider.minimumvalue = 0.0;
 valueslider.maximumvalue = 1.0;
 valueslider.value = 0.5;
 [valueslider addtarget:self action:@selector(valuechangedaction:) forcontrolevents:uicontroleventvaluechanged];
 [self.view addsubview:valueslider];
}
 
- (void)valuechangedaction:(uislider*)slider
{
 heartview.rate = slider.value;
}
 
 
- (void)didreceivememorywarning {
 [super didreceivememorywarning];
 // dispose of any resources that can be recreated.
}
 
@end

这里我添加了一个slider,为了实现随意设置爱心填充的rate。

哈,下面就是看看效果了:

iOS绘制专属于程序猿的浪漫爱心

以上就是本文的全部内容,希望对大家的学习有所帮助,快点制作属于自己浪漫爱心送给自己吧。

延伸 · 阅读

精彩推荐
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25