BaseTableViewCell.m 402 B

12345678910111213141516171819202122
  1. //
  2. // BaseTableViewCell.m
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/8/6.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "BaseTableViewCell.h"
  9. @implementation BaseTableViewCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.text_field.borderStyle = UITextBorderStyleNone;
  14. self.nameL.textColor = kAppGrayColor1;
  15. self.text_field.textColor = kAppGrayColor2;
  16. }
  17. @end