forked from shadowfacts/Tusker
30 lines
909 B
Swift
30 lines
909 B
Swift
|
//
|
||
|
// LoadingTableViewCell.swift
|
||
|
// Tusker
|
||
|
//
|
||
|
// Created by Shadowfacts on 9/12/22.
|
||
|
// Copyright © 2022 Shadowfacts. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class LoadingTableViewCell: UITableViewCell {
|
||
|
let indicator = UIActivityIndicatorView(style: .medium)
|
||
|
|
||
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
||
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
||
|
|
||
|
indicator.translatesAutoresizingMaskIntoConstraints = false
|
||
|
contentView.addSubview(indicator)
|
||
|
NSLayoutConstraint.activate([
|
||
|
indicator.centerXAnchor.constraint(equalTo: centerXAnchor),
|
||
|
indicator.topAnchor.constraint(equalTo: topAnchor),
|
||
|
indicator.bottomAnchor.constraint(equalTo: bottomAnchor),
|
||
|
])
|
||
|
}
|
||
|
|
||
|
required init?(coder: NSCoder) {
|
||
|
fatalError("init(coder:) has not been implemented")
|
||
|
}
|
||
|
}
|