// // File.swift // TournamentStats // // Created by Laurent Morvillier on 15/08/2019. // Copyright © 2019 Stax River. All rights reserved. // import Foundation import UIKit class Label: UILabel { required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) self._initialize() } fileprivate func _initialize() { self.textColor = UIColor.white self.font = Fonts.subTitle } }