12345678910111213141516171819202122232425262728293031 |
- //
- // 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];
- _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
|