简单的评分控件
Cocoapods
pod 'LCScoreView'
支持直接在 IB 中设置属性,无需一行代码,使用的是 target - action 的形式,监听值的改变
[self.scoreView addTarget:self action:@selector(change:) forControlEvents:UIControlEventValueChanged];
同样也支持外部设置
self.scoreView.normalImage = [UIImage imageNamed:@"btn_score_normal"];
self.scoreView.highlightedImage = [UIImage imageNamed:@"btn_score_highlighted"];
self.scoreView.totalScore = 6;
self.scoreView.space = 15.0f;
self.scoreView.currentScore = 1;