TQStarRatingView

码农软件 · 软件分类 · 其他(Others) · 2019-07-26 22:29:09

软件介绍

五角星评分控件。可以点击和滑动星星来进行评分。初始化可以设置大小和星星个数。

示例代码:

================================================
初始化控件
TQStarRatingView *starRatingView = [[TQStarRatingView alloc] initWithFrame:CGRectMake(0, 300, 250, 50) numberOfStar:5];
starRatingView.delegate = self;
[self.view addSubview:starRatingView];
================================================
委托回调处理分数变更
-(void)starRatingView:(TQStarRatingView *)view score:(float)score
{
  self.scoreLabel.text = [NSString stringWithFormat:@"%0.2f",score * 10 ];
}
================================================
用代码设置分数 参数需要在0-1之间。
[self.starRatingView setScore:0.5f withAnimation:YES];

 

本文地址:https://www.codercto.com/soft/d/11014.html

Algorithms and Data Structures

Algorithms and Data Structures

Kurt Mehlhorn、Peter Sanders / Springer / 2008-08-06 / USD 49.95

Algorithms are at the heart of every nontrivial computer application, and algorithmics is a modern and active area of computer science. Every computer scientist and every professional programmer shoul......一起来看看 《Algorithms and Data Structures》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

URL 编码/解码
URL 编码/解码

URL 编码/解码

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具