Skip to content

五星评分RatingView,支持拖拽点击评分,可自定义五角星样式,支持链式调用。

License

Notifications You must be signed in to change notification settings

g763007297/GQRatingView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License MIT    support 

GQRatingView

五星评分RatingView,支持拖拽点击评分,过渡动画平滑,可自定义五角星样式和颜色,支持链式调用。

Overview

Demo Overview

CocoaPods

1.在 Podfile 中添加 pod 'GQRatingView'。

2.执行 pod install 或 pod update。

3.导入 GQRatingView.h。

Basic usage

1.下载 GQRatingView 文件夹内的所有.h和.m文件。

2.将 GQRatingView 内的源文件添加(拖放)到你的工程。

3.在需要用到的地方引用头文件 GQRatingView.h。

4.添加代码:

    //链式调用
    [GQRatingView init]
    .frameChain(CGPointMake(50, 100),50)
    .canTouchChain(YES)
    .needIntValueChain(YES)
    .scoreNumChain(@5)
    .scroreBlockChain(^(NSNumber *scoreNumber){
        NSLog(@"%@",scoreNumber);
    }).superViewChain(self.view);

    //普通用法
    GQRatingView *fiveStar = [GQRatingView initWithPoint:CGPointMake(50, 100) withSize:50];
    
    fiveStar.canTouch = YES;//设置可以触摸
    
    fiveStar.needIntValue = NO;//设置不需要整数分数
    
    fiveStar.scoreNum = [NSNumber numberWithInt:5];//设置初始化分数
    
    fiveStar.scoreBlock = ^(float number){//返回的分数
        
        NSLog(@"%.1f",number);
        
    };
    
    [self.view addSubview:fiveStar];

##Support

欢迎指出bug或者需要改善的地方,欢迎提出issues、加Q群交流iOS经验:578841619 , 我会及时的做出回应,觉得好用的话不妨给个star吧,你的每个star是我持续维护的强大动力。

About

五星评分RatingView,支持拖拽点击评分,可自定义五角星样式,支持链式调用。

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published