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