You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
581 B
26 lines
581 B
//
|
|
// 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.textColor = UIColor.white
|
|
self.text = text
|
|
self.textAlignment = .center
|
|
self.font = UIFont.boldSystemFont(ofSize: 16.0)
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
}
|
|
|