Easiest and simplest RatingView for UIKit.
// Initialize a rating view
let ratingView = RatingView(frame: CGRect(x: 20, y: 20, width: 180, height: 36))
// Set the rating
ratingView.rating = 2.3
// Add it as a subview in all of its awesome
view.addSubview(ratingView)Rating View supports installation with Swift Package Manager. You can also simply add RatingView.swift to your project if you’d prefer.

