All Projects → BigBagFind → Tggstarevaluationview

BigBagFind / Tggstarevaluationview

星星评价视图控件

Labels

Projects that are alternatives of or similar to Tggstarevaluationview

crypto-monitor
Monitor the crypto currency rate
Stars: ✭ 71 (+7.58%)
Mutual labels:  rate
Ratebottomsheet
To help to promote your android app by prompting users to rate your app in a BottomSheet ⭐️
Stars: ✭ 268 (+306.06%)
Mutual labels:  rate
Smart App Rate
An Android library that encourages users to rate the app on the Google Play.
Stars: ✭ 609 (+822.73%)
Mutual labels:  rate
adaptive throttler
manages multiple throttlers with ability to ramp up and down
Stars: ✭ 31 (-53.03%)
Mutual labels:  rate
nginx-rate-limit-sandbox
Docker image with various NGINX rate limit settings to play with burst and nodelay settings
Stars: ✭ 83 (+25.76%)
Mutual labels:  rate
Ex rated
ExRated, the Elixir OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it.
Stars: ✭ 328 (+396.97%)
Mutual labels:  rate
rate-limiter
The Rate Limiter Component provides a Token Bucket implementation to rate limit input and output in your application.
Stars: ✭ 156 (+136.36%)
Mutual labels:  rate
Rpinteraction
Review page interaction - handy and pretty way to ask for review.
Stars: ✭ 26 (-60.61%)
Mutual labels:  rate
RateKit
📦RateKit for macOS
Stars: ✭ 28 (-57.58%)
Mutual labels:  rate
Apprater
AppRater Library for Android
Stars: ✭ 472 (+615.15%)
Mutual labels:  rate
rating
⭐ A true Bayesian rating system with scope and cache enabled
Stars: ✭ 49 (-25.76%)
Mutual labels:  rate
limio
A rate limiting library for Go centered around intuitive and idiomatic interfaces, and designed to limit silly window syndrome.
Stars: ✭ 51 (-22.73%)
Mutual labels:  rate
Heartrate analysis python
Python Heart Rate Analysis Package, for both PPG and ECG signals
Stars: ✭ 381 (+477.27%)
Mutual labels:  rate
Material-Smart-Rating
😍⭐⭐Material Smart Rating App - An Android library that encourages users to rate the app on Google Play.⭐⭐😘
Stars: ✭ 30 (-54.55%)
Mutual labels:  rate
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+933.33%)
Mutual labels:  rate
arbolito
A currency conversion api for the minimalist developer
Stars: ✭ 50 (-24.24%)
Mutual labels:  rate
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+31160.61%)
Mutual labels:  rate
Laravel Reactions
Laravel reactions package for implementing reactions (eg: like, dislike, love, emotion, etc) on Eloquent models.
Stars: ✭ 58 (-12.12%)
Mutual labels:  rate
Laravel Love
Add Social Reactions to Laravel Eloquent Models. It lets people express how they feel about the content. Fully customizable Weighted Reaction System & Reaction Type System with Like, Dislike and any other custom emotion types. Do you react?
Stars: ✭ 822 (+1145.45%)
Mutual labels:  rate
Laravel Acquaintances
This package gives Eloquent models the ability to manage friendships (with groups), followships along with Likes, favorites..etc .
Stars: ✭ 449 (+580.3%)
Mutual labels:  rate

TggStarEvaluationView 星星评价视图,指哪打哪。(如果对你有一点点的帮助,那就来个Star吧)

####迅速使用一步上手 ####查看代码简单思路和解析 ####本篇相关文章

功能:

1.用于5星手动点击评价

2.用于5星评价展示

如何添加到工程

1. 直接把TggStarEvaluationView文件夹拖进去

2. 文件夹里面SupportingFile附带空的星星icon和实心星星icon各一张(如果你自己需要用自己样式的星星,那么拉进来后,名字改成和原来那个一样的就好了)

使用方法:

1.自己看Demo

2.0.import "TggStarEvaluationView"

2.1.复制下面的代码

// 注意weakSelf
__weak __typeof(self)weakSelf = self;
// 初始化
self.tggStarEvaView = [TggStarEvaluationView evaluationViewWithChooseStarBlock:^(NSUInteger count) {
    // 做评星后点处理
    [weakSelf something];
}];
self.tggStarEvaView.frame = (CGRect){self.view.frame.size.width / 2 - 23 * 5,280,23 * 10,45};
[self.view addSubview:self.tggStarEvaView];

// 设置展示的星星数量
// self.tggStarEvaView.starCount = 3;

// 星星之间的间距,默认0.5
// self.tggStarEvaView.spacing = 0.5;

// 星星的点击事件使能,默认YES
// self.tggStarEvaView.tapEnabled = NO;

效果gif如下,请等待加载👇👇👇

image

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].