KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
StarRating
★ 31
Open GitHub ↗
星星评分,评分星星
Download README (.md)
Explore Similar Repositories
RUDPy
:
A reliable UDP implementation in Python.
CourseScheduleDemo
:
模仿超级课程表,模拟登陆学校的正方教育系统
PsychlingDatasets
:
A list of publicly available data sets from psycholinguistic studies
AnimatorDemo
:
Android属性动画上手实现各种动画效果
CommentSystem
:
Angularjs+bootstrap+springmvc+mybatis二级评论系统(仿简书)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
StarRating
?
Download (.md)
# StarRating 星星评分,评分星星 [GitHub: https://github.com/Zws-China/StarRating](https://github.com/Zws-China/StarRating) # PhotoShoot  # How To Use ```ruby #import "WSStarRatingView.h" WSStarRatingView *starRatingView = [[WSStarRatingView alloc] initWithFrame:CGRectMake(30, 200, self.view.frame.size.width-60, 50) numberOfStar:5]; starRatingView.delegate = self; [self.view addSubview:starRatingView]; //StarRatingViewDelegate - (void)starRatingView:(WSStarRatingView *)view score:(float)score { scoreLabel.text = [NSString stringWithFormat:@"%0.1f分",score * 5 ]; } ```