// // TitleLabel.swift // TournamentStats // // Created by Laurent Morvillier on 06/08/2019. // Copyright © 2019 Stax River. All rights reserved. // import Foundation import UIKit class TitleLabel : UILabel { init(frame: CGRect, text: String) { super.init(frame: frame) self._configure() } required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) self._configure() } fileprivate func _configure() { self.textColor = Fonts.titleColor self.text = text self.textAlignment = .left self.font = Fonts.title } }