blob: a7f0cf0db7a38a66a263f730bd7ae2d4cc920b14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// ContentLoadingCell.swift
// Juick
//
// Created by Vitaly Takmazov on 13.05.2023.
// Copyright © 2023 com.juick. All rights reserved.
//
import UIKit
@objc
class ContentLoadingCell: UITableViewCell {
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
self.contentView.startShimmering()
}
}
|