//
// otherPersonPicCell.m
// ThePaperBase
//
// Created by YoungLee on 15/11/24.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "otherPersonPicCell.h"
@implementation otherPersonPicCell
-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
self.backgroundColor = [UIColor colorWithHexString:CELLBACKCOLOR];
}
return self;
}
@end
|