summaryrefslogtreecommitdiff
path: root/Juick/Views/ContentLoadingCell.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-10-16 23:04:01 +0300
committerGravatar Vitaly Takmazov2018-10-16 23:04:01 +0300
commit842990ac65de6fd61e027c8a9cff48d30aaf3a60 (patch)
tree2150701f1c32ec69b9d254a4c96dedb0573737d5 /Juick/Views/ContentLoadingCell.m
parenta7cb4ab3f629b423099afad204c7ae1bf8df9677 (diff)
Content loading
Diffstat (limited to 'Juick/Views/ContentLoadingCell.m')
-rw-r--r--Juick/Views/ContentLoadingCell.m22
1 files changed, 22 insertions, 0 deletions
diff --git a/Juick/Views/ContentLoadingCell.m b/Juick/Views/ContentLoadingCell.m
new file mode 100644
index 0000000..5ec67b3
--- /dev/null
+++ b/Juick/Views/ContentLoadingCell.m
@@ -0,0 +1,22 @@
+//
+// ContentLoadingCell.m
+// Juick
+//
+// Created by Vitaly Takmazov on 16/10/2018.
+// Copyright © 2018 com.juick. All rights reserved.
+//
+
+#import "ContentLoadingCell.h"
+
+@implementation ContentLoadingCell
+
+- (void)awakeFromNib {
+ [super awakeFromNib];
+}
+
+- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
+ [super setSelected:selected animated:animated];
+ [self.contentView startShimmering];
+}
+
+@end