//
|
// CommentTableViewCell.m
|
// mgysVideo
|
//
|
// Created by xyrzx on 16/7/3.
|
// Copyright © 2016年 wgj. All rights reserved.
|
//
|
|
#import "CommentTableViewCell.h"
|
|
@implementation CommentTableViewCell
|
|
- (void)awakeFromNib {
|
[super awakeFromNib];
|
// Initialization code
|
self.backgroundColor=kGlobalBackgroundColor;
|
}
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
[super setSelected:selected animated:animated];
|
|
// Configure the view for the selected state
|
}
|
|
@end
|