// // StrongCell.m // jiaPei // // Created by apple on 16/1/13. // Copyright © 2016年 JCZ. All rights reserved. // #import "StrongCell.h" @implementation StrongCell - (void)awakeFromNib { [super awakeFromNib]; _titleLabel.textColor = kTitleColor; _rightTitleLabel.textColor = kTitleColor; _indexLabel.layer.masksToBounds = YES; _indexLabel.layer.cornerRadius = 10; _rightIndexLabel.layer.masksToBounds = YES; _rightIndexLabel.layer.cornerRadius = 10; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end