// // 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