一个 IOS 星星评分视图控件,可点击和滑动评分。
TQStarRatingView *starRatingView = [[TQStarRatingView alloc] initWithFrame:CGRectMake(30, 200, 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 ];
}
[self.starRatingView setScore:0.5f withAnimation:YES];
//or
[self.starRatingView setScore:0.5f withAnimation:YES completion:^(BOOL finished)
{
NSLog(@"%@",@"starOver");
}];
电子邮件: [email protected]