junhee0720 / MGStarRatingView

MGStarRatingView is a view for rating.

Home Page:https://magi82.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MGStarRatingView

Swift Platform Version Carthage compatible CI Status License

MGStarRatingView is a view for rating.
Simple and easy to implement. ☀️

It supports programmatically and xib.
No image is required. Just choose color.

Sample

Usage (Programmatically)

  • Creating and Implementing a View
let starView = StarRatingView()
let attribute = StarRatingAttribute(type: .rate,
      point: 30,
      spacing: 10,
      emptyColor: .red,
      fillColor: .blue)
starView.configure(attribute, current: 0, max: 5)
starView.delegate = self
self.view.addSubview(starView)
  • Delegate implementation
func StarRatingValueChanged(view: StarRatingView, value: CGFloat) {
  // use value
}

Usage (xib)

First, add UIView.
Register Custom Class as StarRatingView and register Module as MGStarRatingView.

Please be careful.
If you type the spelling of Type String wrongly, it will be applied as the default type.
The default type is rate.

API Reference

// A delegate for receiving values.
public weak var delegate: StarRatingDelegate?

// A type that represents a value.
// There are three kinds. (rate, half, fill)
public var type: StarRatingType

// The current value.
public var current: CGFloat

// The maximum number of stars.
public var max: Int

// The spacing between stars.
public var spacing: CGFloat

// The size of the star.
// The horizontal and vertical sizes are the same.
public var point: CGFloat

// The color value of the empty star.
public var emptyColor: UIColor

// The color value of the full star.
public var fillColor: UIColor

Aid

Requirements

  • Swift 3.0+
  • Xcode 8.0+
  • iOS 8.0+

Installation

pod 'MGStarRatingView', '~> 0.2.0'
github "magi82/MGStarRatingView" ~> 0.2.0

Author

magi82, bkhwang82@gmail.com

License

MGStarRatingView is available under the MIT license. See the LICENSE file for more info.

About

MGStarRatingView is a view for rating.

https://magi82.github.io

License:MIT License


Languages

Language:Swift 91.2%Language:Objective-C 4.4%Language:Ruby 4.4%