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.
21 lines
433 B
21 lines
433 B
//
|
|
// StackTableCell.swift
|
|
// TournamentStats
|
|
//
|
|
// Created by Laurent Morvillier on 05/08/2019.
|
|
// Copyright © 2019 Stax River. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
class StackTableCell: UITableViewCell {
|
|
|
|
@IBOutlet weak var stackView: UIStackView!
|
|
|
|
override func awakeFromNib() {
|
|
self.backgroundColor = UIColor.clear
|
|
self.stackView.distribution = .equalSpacing
|
|
}
|
|
|
|
}
|
|
|