All Projects → 18840851520 → Usestar

18840851520 / Usestar

Licence: mit

FinalStarRatingBar

StarRating Bar,星星打分控件

How to use?

Create star rating bar.(5 Stars)

FinalStarRatingBar *bar = [[FinalStarRatingBar alloc] initWithFrame:CGRectMake(0, 40, 320, 40)];
[self.view addSubView:bar];

Want more stars?

FinalStarRatingBar *bar = [[FinalStarRatingBar alloc] initWithFrame:CGRectMake(0, 40, 320, 40) starCount:10];
[self.view addSubview:bar];

Use in storyboard or nib

1.Drag a view to the nib.

2.Set its class to FinalRatingBar.

3.Use tag property to control the number of the stars.

Receive rating changed notification

[bar2 setRatingChangedBlock:^(NSUInteger rating) {
    NSLog(@"%d",rating);
}];

Others

Set Rating

bar.rating = 3;

Disable Touch

bar.enabled = NO;

Demo

Demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].