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://codercto.com/soft/d/11014.html

Compilers

Compilers

Alfred V. Aho、Monica S. Lam、Ravi Sethi、Jeffrey D. Ullman / Addison Wesley / 2006-9-10 / USD 186.80

This book provides the foundation for understanding the theory and pracitce of compilers. Revised and updated, it reflects the current state of compilation. Every chapter has been completely revised ......一起来看看 《Compilers》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具