SkillAgentSearch skills...

TQStarRatingView

iOS 星星评分视图控件,点击和滑动评分。

Install / Use

/learn @TinyQ/TQStarRatingView
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

TQStarRatingView

星星评分控件

iOS 星星评分视图控件,点击和滑动评分。

控件效果

Image text

初始化

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 ];
}

用代码设置分数 参数需要在0-1之间。


[self.starRatingView setScore:0.5f withAnimation:YES];


[self.starRatingView setScore:0.5f withAnimation:YES completion:^(BOOL finished){
    NSLog(@"%@",@"starOver");
}];

About TinyQ

View on GitHub
GitHub Stars212
CategoryDevelopment
Updated1mo ago
Forks46

Languages

Objective-C

Security Score

100/100

Audited on Feb 10, 2026

No findings