时间:2021-05-02
常规思路:
创建两个 view,通过 for 循环创建 imageview,未点亮星星视图在下、点亮星星视图在上重合在一起,当用户点击视图时,通过改变点亮星星视图的 width 实现功能
本文思路:
直接重写 drawrect 方法,在 drawrect 用 drawimage 画出星星,根据 currentvalue 画出不同类型的星星,当用户点击视图时,改变 currentvalue,并根据改变后的 currentvalue 重新画出星星。
展示图:
代码:
自定义一个继承 uiview 的 cystarview
属性:
? 1 2 3 4 5 6 7 8 9 10 11 12 /** 完成后执行的block */ @property (copy, nonatomic) void(^completionblock)(nsinteger); /** 是否可以点击 */ @property (assign, nonatomic) bool clickable; /** 星星个数 */ @property (assign, nonatomic) nsinteger numberofstars; /** 星星边长 */ @property (assign, nonatomic) cgfloat lengthofside; /** 评价值 */ @property (assign, nonatomic) nsinteger currentvalue; /** 星星间隔 */ @property (assign, nonatomic) cgfloat spacing;重写 setter 方法,在 setter 方法中调用 setneedsdisplay,会执行 drawrect:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 - (void)setlengthofside:(cgfloat)lengthofside { // 超过控件高度 if (lengthofside > self.frame.size.height) { lengthofside = self.frame.size.height; } // 超过控件宽度 if (lengthofside > self.frame.size.width / _numberofstars) { lengthofside = self.frame.size.width / _numberofstars; } _lengthofside = lengthofside; _spacing = (self.frame.size.width - lengthofside * _numberofstars) / _numberofstars; [self setneedsdisplay]; }在 drawrect 中画星星:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 - (void)drawrect:(cgrect)rect { uiimage *lightimage = [uiimage imagenamed:@"star_light"]; uiimage *darkimage = [uiimage imagenamed:@"star_dark"]; // 获取当前上下文 cgcontextref context = uigraphicsgetcurrentcontext(); for (int i = 0; i < self.numberofstars; i ++) { // 根据 currentvalue 选择是画亮的还是暗的星星 uiimage *image = i >= self.currentvalue ? darkimage : lightimage; cgrect imagerect = cgrectmake(self.spacing / 2 + (self.lengthofside + self.spacing) * i, (self.frame.size.height - self.lengthofside) / 2, self.lengthofside, self.lengthofside); cgcontextsavegstate(context); // 坐标系y轴是相反的,进行翻转 cgcontextscalectm(context, 1.0, - 1.0); cgcontexttranslatectm(context, 0, - rect.origin.y * 2 - rect.size.height); cgcontextdrawimage(context, imagerect, image.cgimage); cgcontextrestoregstate(context); } }使用:
在要使用的控制器中:
? 1 2 3 4 5 6 7 8 9 10 #import "cystarview.h" // 初始化,传入必要参数 cystarview *starview = [[cystarview alloc] initwithframe:frame numberofstars:number lengthofside:length]; // 设置 clickable,评论界面设置为yes,展示界面设置为no self.starview.clickable = yes; // // 设置 completionblock self.starview.completionblock = ^(nsinteger currentvalue) { // 点击后的操作放这里 };项目地址:点我点我!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/b87b08b0c7fd#
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一执行上下文?1什么是执行上下文?执行上下文就是当前的JavaScript代码被解析和执行时所在环境的抽象概念,JavaScript中运行任何的
执行上下文(Executioncontext)执行上下文(简称上下文)决定了Js执行过程中可以获取哪些变量、函数、数据,一段程序可能被分割成许多不同的上下文,每
先给大家展示效果图:实现代码也很简单,代码如下所示:privatevoidshowLabelAlert(){newAlertDialog.Builder(上下文
本文实例讲述了JQuery中上下文选择器实现方法。分享给大家供大家参考。具体实现方法如下:上下文选择器$(function(){$("#btnTest").cl
在Python中,with关键字是一个替你管理实现上下文协议对象的好东西。例如:file等。示例如下:from__future__importwith_stat