ThreeSectionTableViewCell.m 668 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ThreeSectionTableViewCell.m
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/5.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "ThreeSectionTableViewCell.h"
  9. @implementation ThreeSectionTableViewCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.nameLabel.textColor = kAppGrayColor1;
  14. self.lineView = [[UIView alloc]initWithFrame:CGRectMake(0, self.frame.size.height-1, kScreenW, 1)];
  15. self.lineView.backgroundColor = kAppSpaceColor4;
  16. [self addSubview:self.lineView];
  17. }
  18. - (void)creatCellWithNum:(int)count
  19. {
  20. self.nameLabel.text =[NSString stringWithFormat:ASLocalizedString(@"竞拍记录 (%d)"),count];
  21. }
  22. @end