mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-18 21:19:16 +08:00
19 lines
317 B
Swift
19 lines
317 B
Swift
//
|
|
// StyledSwitch.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 8/11/18.
|
|
// Copyright © 2018 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class StyledSwitch: UISwitch {
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
onTintColor = Styles.Colors.Green.medium.color
|
|
}
|
|
|
|
}
|