TQStarRatingView
- 授权协议: BSD
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/TinyQ/TQStarRatingView
- 官方下载: https://github.com/TinyQ/TQStarRatingView
软件介绍
五角星评分控件。可以点击和滑动星星来进行评分。初始化可以设置大小和星星个数。
示例代码:
================================================
初始化控件
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];
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》 这本书的介绍吧!
