//
// HotCommentContentcell.m
// ThePaperBase
//
// Created by zhousan on 15/11/23.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "HotCommentContentcell.h"
@implementation HotCommentContentcell
- (void)reLayoutSubViews {
[super reLayoutSubViews];
self.lineView.hidden = NO;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code
}
*/
@end
|