程序中須要打分的功能,在網上找了幾個,都不是很滿意。下面是實現出的效果。能夠點擊,能夠拖動。git
使用方法:初始化控件。github
TQStarRatingView *starRatingView = [[TQStarRatingView alloc] initWithFrame:CGRectMake(0, 300, 50 * 5, 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 ]; }
由於項目暫時不須要。這裏沒有寫用代碼設置星星顯示位置的方法,之後有時間會補上。spa
控件的源代碼放在 https://github.com/TinyQ/TQStarRatingView 上了。有須要能夠去下載下。code