summaryrefslogtreecommitdiff
path: root/Juick/Views/ContentLoadingCell.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Views/ContentLoadingCell.swift')
-rw-r--r--Juick/Views/ContentLoadingCell.swift17
1 files changed, 17 insertions, 0 deletions
diff --git a/Juick/Views/ContentLoadingCell.swift b/Juick/Views/ContentLoadingCell.swift
new file mode 100644
index 0000000..a7f0cf0
--- /dev/null
+++ b/Juick/Views/ContentLoadingCell.swift
@@ -0,0 +1,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()
+ }
+}