20 lines
397 B
Swift
20 lines
397 B
Swift
//
|
|
// TimelineBottomLoaderTableViewCell.swift
|
|
// Mastodon
|
|
//
|
|
// Created by sxiaojian on 2021/2/3.
|
|
//
|
|
|
|
import UIKit
|
|
import Combine
|
|
|
|
final class TimelineBottomLoaderTableViewCell: TimelineLoaderTableViewCell {
|
|
override func _init() {
|
|
super._init()
|
|
backgroundColor = .clear
|
|
|
|
activityIndicatorView.isHidden = false
|
|
activityIndicatorView.startAnimating()
|
|
}
|
|
}
|