//
// topicCollectionListCell.m
// ThePaperBase
//
// Created by Huixin on 15/10/14.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "topicCollectionListCell.h"
@implementation topicCollectionListCell
- (void)reLayout {
self.backgroundColor = [UIColor colorWithHexString:BackGroundColor];
// [self.backView makeConstraints:^(MASConstraintMaker *make) {
// make.left.equalTo(self.contentView.left).offset(10);
// make.right.equalTo(self.contentView.right).offset(-10);
// make.top.equalTo(self.contentView.top);
// make.bottom.equalTo(self.contentView.bottom).offset(-10);
// }];
}
- (void)needrefreshNightMode:(id)sender{
self.backgroundColor = [UIColor colorWithHexString:BackGroundColor];
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code
}
*/
@end
|