ASTableViewCell.m 366 B

123456789101112131415161718192021222324
  1. //
  2. // ASTableViewCell.m
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/7/18.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "ASTableViewCell.h"
  9. @implementation ASTableViewCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.leftNameLabel.textColor = kAppGrayColor1;
  14. self.phoneNumber.textColor = kAppGrayColor3;
  15. }
  16. @end