blob: 90329fa75cb8574e7f9f680b584c475e89643bf2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// 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];
self.userInteractionEnabled = NO;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
[self.contentView startShimmering];
}
@end
|