mastodon-ios/Mastodon/Scene/Share/View/TableviewCell/TimelineBottomLoaderTableVi...

20 lines
397 B
Swift
Raw Normal View History

2021-02-03 06:01:50 +01:00
//
// TimelineBottomLoaderTableViewCell.swift
// Mastodon
//
// Created by sxiaojian on 2021/2/3.
//
import UIKit
import Combine
final class TimelineBottomLoaderTableViewCell: TimelineLoaderTableViewCell {
override func _init() {
super._init()
2021-02-05 10:53:00 +01:00
backgroundColor = .clear
2021-02-03 06:01:50 +01:00
activityIndicatorView.isHidden = false
activityIndicatorView.startAnimating()
}
}