如何在iOS中制作像flipkart app这样的评级系统?

时间:2017-06-12 04:27:33

标签: ios objective-c

我正在尝试在iOS中实现bar尝试系统。有人请根据像Flipkart,亚马逊应用程序这样的用户数量,建议一些想法或第三方的酒吧评级吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用HCSStarRatingView显示星级,使用UIProgressView显示条

UIProgressView * progressView = [[UIProgressView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
progressView.progress = .50;
progressView.trackTintColor = [UIColor whiteColor];
progressView.progressTintColor = [UIColor yellowColor];
相关问题