We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
iOS 星星评分视图控件,点击和滑动评分。
TQStarRatingView *starRatingView = [[TQStarRatingViewalloc]initWithFrame:CGRectMake(30,200,250,50)numberOfStar:5];starRatingView.delegate = self;[self.viewaddSubview:starRatingView];
-(void)starRatingView:(TQStarRatingView *)view score:(float)score{ self.scoreLabel.text = [NSStringstringWithFormat:@"%0.2f",score *10 ];}
[self.starRatingViewsetScore:0.5fwithAnimation:YES];
[self.starRatingViewsetScore:0.5fwithAnimation:YEScompletion:^(BOOL finished){NSLog(@"%@",@"starOver");}];