Files
GitHawk/Local Pods/SwipeCellKit/Example/MailExample/IndicatorView.swift
James Sherlock c28c088629 Initial repository spring clean (#415)
* Move SwipeCellKit & SlackTextViewController to Local Pods directory

* Move playgrounds to own folder

* Create podspec for MMMarkdown and move to Local Pods
2017-09-24 18:35:05 -04:00

21 lines
324 B
Swift

//
// IndicatorView.swift
// MailExample
//
// Created by Ryan Nystrom on 6/26/17.
//
//
import UIKit
class IndicatorView: UIView {
var color = UIColor.clear {
didSet { setNeedsDisplay() }
}
override func draw(_ rect: CGRect) {
color.set()
UIBezierPath(ovalIn: rect).fill()
}
}